Version 3.4.1
authoralexlamsl <alexlamsl@gmail.com>
Mon, 13 Mar 2017 20:06:46 +0000 (04:06 +0800)
committeralexlamsl <alexlamsl@gmail.com>
Mon, 13 Mar 2017 20:06:46 +0000 (04:06 +0800)
README.md
dist/htmlminifier.js
dist/htmlminifier.min.js
index.html
package.json
tests/index.html

index ef28b7d..4e4aa8f 100644 (file)
--- a/README.md
+++ b/README.md
@@ -22,19 +22,19 @@ How does HTMLMinifier compare to other solutions — [HTML Minifier from Will Pe
 
 | Site                                                                        | Original size *(KB)* | HTMLMinifier | minimize | Will Peavy | htmlcompressor.com |
 | --------------------------------------------------------------------------- |:--------------------:| ------------:| --------:| ----------:| ------------------:|
-| [Google](https://www.google.com/)                                           | 44                   | **42**       | 45       | 46         | 45                 |
-| [HTMLMinifier](https://github.com/kangax/html-minifier)                     | 123                  | **96**       | 104      | 108        | 103                |
-| [CNN](http://www.cnn.com/)                                                  | 131                  | **120**      | 128      | 129        | 124                |
-| [Amazon](http://www.amazon.co.uk/)                                          | 193                  | **161**      | 185      | 188        | n/a                |
-| [BBC](http://www.bbc.co.uk/)                                                | 204                  | **169**      | 198      | 203        | 192                |
-| [Stack Overflow](http://stackoverflow.com/)                                 | 240                  | **188**      | 198      | 206        | 195                |
-| [New York Times](http://www.nytimes.com/)                                   | 261                  | **182**      | 207      | 204        | 191                |
+| [Google](https://www.google.com/)                                           | 44                   | **42**       | 44       | 46         | 45                 |
+| [HTMLMinifier](https://github.com/kangax/html-minifier)                     | 123                  | **96**       | 104      | 108        | 104                |
+| [CNN](http://www.cnn.com/)                                                  | 135                  | **125**      | 133      | 134        | 128                |
+| [Amazon](http://www.amazon.co.uk/)                                          | 193                  | **161**      | 184      | 187        | n/a                |
+| [New York Times](http://www.nytimes.com/)                                   | 205                  | **137**      | 154      | 155        | 145                |
+| [BBC](http://www.bbc.co.uk/)                                                | 206                  | **171**      | 199      | 204        | 194                |
+| [Stack Overflow](http://stackoverflow.com/)                                 | 223                  | **173**      | 182      | 190        | 179                |
 | [Bootstrap CSS](http://getbootstrap.com/css/)                               | 272                  | **260**      | 269      | 229        | 269                |
-| [Wikipedia](https://en.wikipedia.org/wiki/President_of_the_United_States)   | 546                  | **499**      | 527      | 545        | 526                |
-| [NBC](http://www.nbc.com/)                                                  | 566                  | **543**      | 564      | 566        | 549                |
+| [Wikipedia](https://en.wikipedia.org/wiki/President_of_the_United_States)   | 545                  | **498**      | 526      | 544        | 525                |
+| [NBC](http://www.nbc.com/)                                                  | 560                  | **538**      | 558      | 560        | 543                |
 | [Eloquent Javascript](http://eloquentjavascript.net/1st_edition/print.html) | 870                  | **815**      | 840      | 864        | n/a                |
-| [ES6 table](http://kangax.github.io/compat-table/es6/)                      | 4197                 | **3531**     | 3959     | n/a        | n/a                |
-| [ES6 draft](https://tc39.github.io/ecma262/)                                | 5507                 | **4914**     | 5060     | n/a        | n/a                |
+| [ES6 table](http://kangax.github.io/compat-table/es6/)                      | 4287                 | **3607**     | 4044     | n/a        | n/a                |
+| [ES6 draft](https://tc39.github.io/ecma262/)                                | 5506                 | **4914**     | 5060     | n/a        | n/a                |
 
 ## Options Quick Reference
 
index e455d6f..d5a96b0 100644 (file)
@@ -1,5 +1,5 @@
 /*!
- * HTMLMinifier v3.4.0 (http://kangax.github.io/html-minifier/)
+ * HTMLMinifier v3.4.1 (http://kangax.github.io/html-minifier/)
  * Copyright 2010-2017 Juriy "kangax" Zaytsev
  * Licensed under the MIT license
  */
@@ -20802,7 +20802,7 @@ function push_uniq(array, el) {
 
 function string_template(text, props) {
     return text.replace(/\{(.+?)\}/g, function(str, p){
-        return props[p];
+        return props && props[p];
     });
 };
 
@@ -21069,9 +21069,20 @@ var AST_Token = DEFNODE("Token", "type value line col pos endline endcol endpos
 }, null);
 
 var AST_Node = DEFNODE("Node", "start end", {
-    clone: function() {
+    _clone: function(deep) {
+        if (deep) {
+            var self = this.clone();
+            return self.transform(new TreeTransformer(function(node) {
+                if (node !== self) {
+                    return node.clone(true);
+                }
+            }));
+        }
         return new this.CTOR(this);
     },
+    clone: function(deep) {
+        return this._clone(deep);
+    },
     $documentation: "Base class of all AST nodes",
     $propdoc: {
         start: "[AST_Token] The first token of this node",
@@ -21177,6 +21188,20 @@ var AST_LabeledStatement = DEFNODE("LabeledStatement", "label", {
             this.label._walk(visitor);
             this.body._walk(visitor);
         });
+    },
+    clone: function(deep) {
+        var node = this._clone(deep);
+        if (deep) {
+            var refs = node.label.references;
+            var label = this.label;
+            node.walk(new TreeWalker(function(node) {
+                if (node instanceof AST_LoopControl
+                    && node.label && node.label.thedef === label) {
+                    refs.push(node);
+                }
+            }));
+        }
+        return node;
     }
 }, AST_StatementWithBody);
 
@@ -21790,9 +21815,6 @@ var AST_SymbolAccessor = DEFNODE("SymbolAccessor", null, {
 
 var AST_SymbolDeclaration = DEFNODE("SymbolDeclaration", "init", {
     $documentation: "A declaration symbol (symbol in var/const, function name or argument, symbol in catch)",
-    $propdoc: {
-        init: "[AST_Node*/S] array of initializers for this declaration."
-    }
 }, AST_Symbol);
 
 var AST_SymbolVar = DEFNODE("SymbolVar", null, {
@@ -22566,6 +22588,11 @@ function tokenizer($TEXT, filename, html5_comments, shebang) {
     function next_token(force_regexp) {
         if (force_regexp != null)
             return read_regexp(force_regexp);
+        if (shebang && S.pos == 0 && looking_at("#!")) {
+            start_token();
+            forward(2);
+            skip_line_comment("comment5");
+        }
         for (;;) {
             skip_whitespace();
             start_token();
@@ -22597,13 +22624,6 @@ function tokenizer($TEXT, filename, html5_comments, shebang) {
             if (PUNC_CHARS(ch)) return token("punc", next());
             if (OPERATOR_CHARS(ch)) return read_operator();
             if (code == 92 || is_identifier_start(code)) return read_word();
-            if (shebang) {
-                if (S.pos == 0 && looking_at("#!")) {
-                    forward(2);
-                    skip_line_comment("comment5");
-                    continue;
-                }
-            }
             break;
         }
         parse_error("Unexpected character '" + ch + "'");
@@ -22938,11 +22958,9 @@ function parse($TEXT, options) {
                     expression : parenthesised(),
                     body       : statement()
                 });
-
-              default:
-                unexpected();
             }
         }
+        unexpected();
     });
 
     function labeled_statement() {
@@ -23901,7 +23919,7 @@ AST_Toplevel.DEFMETHOD("figure_out_scope", function(options){
     var labels = new Dictionary();
     var defun = null;
     var tw = new TreeWalker(function(node, descend){
-        if (options.screw_ie8 && node instanceof AST_Catch) {
+        if (node instanceof AST_Catch) {
             var save_scope = scope;
             scope = new AST_Scope(node);
             scope.init_scope_vars();
@@ -23958,12 +23976,10 @@ AST_Toplevel.DEFMETHOD("figure_out_scope", function(options){
         }
         else if (node instanceof AST_SymbolVar
                  || node instanceof AST_SymbolConst) {
-            var def = defun.def_variable(node);
-            def.init = tw.parent().value;
+            defun.def_variable(node);
         }
         else if (node instanceof AST_SymbolCatch) {
-            (options.screw_ie8 ? scope : defun)
-                .def_variable(node);
+            scope.def_variable(node);
         }
         else if (node instanceof AST_LabelRef) {
             var sym = labels.get(node.name);
@@ -24013,6 +24029,24 @@ AST_Toplevel.DEFMETHOD("figure_out_scope", function(options){
     });
     self.walk(tw);
 
+    // pass 3: fix up any scoping issue with IE8
+    if (!options.screw_ie8) {
+        self.walk(new TreeWalker(function(node, descend) {
+            if (node instanceof AST_SymbolCatch) {
+                var name = node.name;
+                var refs = node.thedef.references;
+                var scope = node.thedef.scope.parent_scope;
+                var def = scope.find_variable(name) || self.globals.get(name) || scope.def_variable(node);
+                refs.forEach(function(ref) {
+                    ref.thedef = def;
+                    ref.reference(options);
+                });
+                node.thedef = def;
+                return true;
+            }
+        }));
+    }
+
     if (options.cache) {
         this.cname = options.cache.cname;
     }
@@ -24479,17 +24513,8 @@ AST_Toplevel.DEFMETHOD("scope_warnings", function(options){
 var EXPECT_DIRECTIVE = /^$|[;{][\s\n]*$/;
 
 function is_some_comments(comment) {
-    var text = comment.value;
-    var type = comment.type;
-    if (type == "comment2") {
-        // multiline comment
-        return /@preserve|@license|@cc_on/i.test(text);
-    }
-    return type == "comment5";
-}
-
-function is_comment5(comment) {
-    return comment.type == "comment5";
+    // multiline comment
+    return comment.type == "comment2" && /@preserve|@license|@cc_on/i.test(comment.value);
 }
 
 function OutputStream(options) {
@@ -24519,7 +24544,7 @@ function OutputStream(options) {
     }, true);
 
     // Convert comment option to RegExp if neccessary and set up comments filter
-    var comment_filter = options.shebang ? is_comment5 : return_false; // Default case, throw all comments away except shebangs
+    var comment_filter = return_false; // Default case, throw all comments away
     if (options.comments) {
         var comments = options.comments;
         if (typeof options.comments === "string" && /^\/.*\/[a-zA-Z]*$/.test(options.comments)) {
@@ -24531,12 +24556,12 @@ function OutputStream(options) {
         }
         if (comments instanceof RegExp) {
             comment_filter = function(comment) {
-                return comment.type == "comment5" || comments.test(comment.value);
+                return comment.type != "comment5" && comments.test(comment.value);
             };
         }
         else if (typeof comments === "function") {
             comment_filter = function(comment) {
-                return comment.type == "comment5" || comments(this, comment);
+                return comment.type != "comment5" && comments(this, comment);
             };
         }
         else if (comments === "some") {
@@ -24833,10 +24858,6 @@ function OutputStream(options) {
         return OUTPUT;
     };
 
-    if (options.preamble) {
-        print(options.preamble.replace(/\r\n?|[\n\u2028\u2029]|\s*$/g, "\n"));
-    }
-
     var stack = [];
     return {
         get             : get,
@@ -24956,6 +24977,17 @@ function OutputStream(options) {
                 }));
             }
 
+            if (comments.length > 0 && output.pos() == 0) {
+                if (output.option("shebang") && comments[0].type == "comment5") {
+                    output.print("#!" + comments.shift().value + "\n");
+                    output.indent();
+                }
+                var preamble = output.option("preamble");
+                if (preamble) {
+                    output.print(preamble.replace(/\r\n?|[\n\u2028\u2029]|\s*$/g, "\n"));
+                }
+            }
+
             comments = comments.filter(output.comment_filter, self);
 
             // Keep single line comments after nlb, after nlb
@@ -24980,10 +25012,6 @@ function OutputStream(options) {
                         output.space();
                     }
                 }
-                else if (output.pos() === 0 && c.type == "comment5" && output.option("shebang")) {
-                    output.print("#!" + c.value + "\n");
-                    output.indent();
-                }
             });
         }
     });
@@ -25216,7 +25244,7 @@ function OutputStream(options) {
     DEFPRINT(AST_Do, function(self, output){
         output.print("do");
         output.space();
-        self._do_print_body(output);
+        make_block(self.body, output);
         output.space();
         output.print("while");
         output.space();
@@ -25343,10 +25371,10 @@ function OutputStream(options) {
 
     /* -----[ if ]----- */
     function make_then(self, output) {
-        if (output.option("bracketize")) {
-            make_block(self.body, output);
-            return;
-        }
+        var b = self.body;
+        if (output.option("bracketize")
+            || !output.option("screw_ie8") && b instanceof AST_Do)
+            return make_block(b, output);
         // The squeezer replaces "block"-s that contain only a single
         // statement with the statement itself; technically, the AST
         // is correct, but this can create problems when we output an
@@ -25354,18 +25382,7 @@ function OutputStream(options) {
         // IF *without* an ELSE block (then the outer ELSE would refer
         // to the inner IF).  This function checks for this case and
         // adds the block brackets if needed.
-        if (!self.body)
-            return output.force_semicolon();
-        if (self.body instanceof AST_Do) {
-            // Unconditionally use the if/do-while workaround for all browsers.
-            // https://github.com/mishoo/UglifyJS/issues/#issue/57 IE
-            // croaks with "syntax error" on code like this: if (foo)
-            // do ... while(cond); else ...  we need block brackets
-            // around do/while
-            make_block(self.body, output);
-            return;
-        }
-        var b = self.body;
+        if (!b) return output.force_semicolon();
         while (true) {
             if (b instanceof AST_If) {
                 if (!b.alternative) {
@@ -25774,15 +25791,7 @@ function OutputStream(options) {
 
     function force_statement(stat, output) {
         if (output.option("bracketize")) {
-            if (!stat || stat instanceof AST_EmptyStatement)
-                output.print("{}");
-            else if (stat instanceof AST_BlockStatement)
-                stat.print(output);
-            else output.with_block(function(){
-                output.indent();
-                stat.print(output);
-                output.newline();
-            });
+            make_block(stat, output);
         } else {
             if (!stat || stat instanceof AST_EmptyStatement)
                 output.force_semicolon();
@@ -25831,11 +25840,11 @@ function OutputStream(options) {
     };
 
     function make_block(stmt, output) {
-        if (stmt instanceof AST_BlockStatement) {
+        if (!stmt || stmt instanceof AST_EmptyStatement)
+            output.print("{}");
+        else if (stmt instanceof AST_BlockStatement)
             stmt.print(output);
-            return;
-        }
-        output.with_block(function(){
+        else output.with_block(function(){
             output.indent();
             stmt.print(output);
             output.newline();
@@ -25946,6 +25955,7 @@ function Compressor(options, false_by_default) {
         drop_debugger : !false_by_default,
         unsafe        : false,
         unsafe_comps  : false,
+        unsafe_math   : false,
         unsafe_proto  : false,
         conditionals  : !false_by_default,
         comparisons   : !false_by_default,
@@ -25953,7 +25963,7 @@ function Compressor(options, false_by_default) {
         booleans      : !false_by_default,
         loops         : !false_by_default,
         unused        : !false_by_default,
-        toplevel      : !!options["top_retain"],
+        toplevel      : !!(options && options["top_retain"]),
         top_retain    : null,
         hoist_funs    : !false_by_default,
         keep_fargs    : true,
@@ -25971,6 +25981,7 @@ function Compressor(options, false_by_default) {
         screw_ie8     : true,
         drop_console  : false,
         angular       : false,
+        expression    : false,
         warnings      : true,
         global_defs   : {},
         passes        : 1,
@@ -26007,12 +26018,18 @@ Compressor.prototype = new TreeTransformer;
 merge(Compressor.prototype, {
     option: function(key) { return this.options[key] },
     compress: function(node) {
+        if (this.option("expression")) {
+            node = node.process_expression(true);
+        }
         var passes = +this.options.passes || 1;
         for (var pass = 0; pass < passes && pass < 3; ++pass) {
             if (pass > 0 || this.option("reduce_vars"))
                 node.reset_opt_flags(this, true);
             node = node.transform(this);
         }
+        if (this.option("expression")) {
+            node = node.process_expression(false);
+        }
         return node;
     },
     warn: function(text, props) {
@@ -26069,49 +26086,192 @@ merge(Compressor.prototype, {
         return this.print_to_string() == node.print_to_string();
     });
 
+    AST_Node.DEFMETHOD("process_expression", function(insert) {
+        var self = this;
+        var tt = new TreeTransformer(function(node) {
+            if (insert && node instanceof AST_SimpleStatement) {
+                return make_node(AST_Return, node, {
+                    value: node.body
+                });
+            }
+            if (!insert && node instanceof AST_Return) {
+                return make_node(AST_SimpleStatement, node, {
+                    body: node.value || make_node(AST_Undefined, node)
+                });
+            }
+            if (node instanceof AST_Lambda && node !== self) {
+                return node;
+            }
+            if (node instanceof AST_Block) {
+                var index = node.body.length - 1;
+                if (index >= 0) {
+                    node.body[index] = node.body[index].transform(tt);
+                }
+            }
+            if (node instanceof AST_If) {
+                node.body = node.body.transform(tt);
+                if (node.alternative) {
+                    node.alternative = node.alternative.transform(tt);
+                }
+            }
+            if (node instanceof AST_With) {
+                node.body = node.body.transform(tt);
+            }
+            return node;
+        });
+        return self.transform(tt);
+    });
+
     AST_Node.DEFMETHOD("reset_opt_flags", function(compressor, rescan){
         var reduce_vars = rescan && compressor.option("reduce_vars");
-        var unsafe = compressor.option("unsafe");
-        var tw = new TreeWalker(function(node){
+        var toplevel = compressor.option("toplevel");
+        var ie8 = !compressor.option("screw_ie8");
+        var safe_ids = [];
+        push();
+        var suppressor = new TreeWalker(function(node) {
+            if (node instanceof AST_Symbol) {
+                var d = node.definition();
+                if (node instanceof AST_SymbolRef) d.references.push(node);
+                d.fixed = false;
+            }
+        });
+        var tw = new TreeWalker(function(node, descend){
+            if (!(node instanceof AST_Directive || node instanceof AST_Constant)) {
+                node._squeezed = false;
+                node._optimized = false;
+            }
             if (reduce_vars) {
                 if (node instanceof AST_Toplevel) node.globals.each(reset_def);
                 if (node instanceof AST_Scope) node.variables.each(reset_def);
                 if (node instanceof AST_SymbolRef) {
                     var d = node.definition();
                     d.references.push(node);
-                    if (!d.modified && (d.orig.length > 1 || isModified(node, 0))) {
-                        d.modified = true;
+                    if (!d.fixed || !is_safe(d)
+                        || is_modified(node, 0, d.fixed instanceof AST_Lambda)) {
+                        d.fixed = false;
                     }
                 }
-                if (node instanceof AST_Call && node.expression instanceof AST_Function) {
-                    node.expression.argnames.forEach(function(arg, i) {
-                        arg.definition().init = node.args[i] || make_node(AST_Undefined, node);
+                if (ie8 && node instanceof AST_SymbolCatch) {
+                    node.definition().fixed = false;
+                }
+                if (node instanceof AST_VarDef) {
+                    var d = node.name.definition();
+                    if (d.fixed === undefined) {
+                        d.fixed = node.value || make_node(AST_Undefined, node);
+                        mark_as_safe(d);
+                    } else {
+                        d.fixed = false;
+                    }
+                }
+                if (node instanceof AST_Defun) {
+                    var d = node.name.definition();
+                    if (!toplevel && d.global || is_safe(d)) {
+                        d.fixed = false;
+                    } else {
+                        d.fixed = node;
+                        mark_as_safe(d);
+                    }
+                    var save_ids = safe_ids;
+                    safe_ids = [];
+                    push();
+                    descend();
+                    safe_ids = save_ids;
+                    return true;
+                }
+                var iife;
+                if (node instanceof AST_Function
+                    && !node.name
+                    && (iife = tw.parent()) instanceof AST_Call
+                    && iife.expression === node) {
+                    // Virtually turn IIFE parameters into variable definitions:
+                    //   (function(a,b) {...})(c,d) => (function() {var a=c,b=d; ...})()
+                    // So existing transformation rules can work on them.
+                    node.argnames.forEach(function(arg, i) {
+                        var d = arg.definition();
+                        d.fixed = iife.args[i] || make_node(AST_Undefined, iife);
+                        mark_as_safe(d);
                     });
                 }
-            }
-            if (!(node instanceof AST_Directive || node instanceof AST_Constant)) {
-                node._squeezed = false;
-                node._optimized = false;
+                if (node instanceof AST_If || node instanceof AST_DWLoop) {
+                    node.condition.walk(tw);
+                    push();
+                    node.body.walk(tw);
+                    pop();
+                    if (node.alternative) {
+                        push();
+                        node.alternative.walk(tw);
+                        pop();
+                    }
+                    return true;
+                }
+                if (node instanceof AST_LabeledStatement) {
+                    push();
+                    node.body.walk(tw);
+                    pop();
+                    return true;
+                }
+                if (node instanceof AST_For) {
+                    if (node.init) node.init.walk(tw);
+                    push();
+                    if (node.condition) node.condition.walk(tw);
+                    node.body.walk(tw);
+                    if (node.step) node.step.walk(tw);
+                    pop();
+                    return true;
+                }
+                if (node instanceof AST_ForIn) {
+                    node.init.walk(suppressor);
+                    node.object.walk(tw);
+                    push();
+                    node.body.walk(tw);
+                    pop();
+                    return true;
+                }
+                if (node instanceof AST_Catch) {
+                    push();
+                    descend();
+                    pop();
+                    return true;
+                }
             }
         });
         this.walk(tw);
 
+        function mark_as_safe(def) {
+            safe_ids[safe_ids.length - 1][def.id] = true;
+        }
+
+        function is_safe(def) {
+            for (var i = safe_ids.length, id = def.id; --i >= 0;) {
+                if (safe_ids[i][id]) return true;
+            }
+        }
+
+        function push() {
+            safe_ids.push(Object.create(null));
+        }
+
+        function pop() {
+            safe_ids.pop();
+        }
+
         function reset_def(def) {
-            def.modified = false;
+            if (toplevel || !def.global || def.orig[0] instanceof AST_SymbolConst) {
+                def.fixed = undefined;
+            } else {
+                def.fixed = false;
+            }
             def.references = [];
             def.should_replace = undefined;
-            if (unsafe && def.init) {
-                def.init._evaluated = undefined;
-            }
         }
 
-        function isModified(node, level) {
+        function is_modified(node, level, func) {
             var parent = tw.parent(level);
             if (isLHS(node, parent)
-                || parent instanceof AST_Call && parent.expression === node) {
+                || !func && parent instanceof AST_Call && parent.expression === node) {
                 return true;
             } else if (parent instanceof AST_PropAccess && parent.expression === node) {
-                return isModified(parent, level + 1);
+                return !func && is_modified(parent, level + 1);
             }
         }
     });
@@ -26145,7 +26305,7 @@ merge(Compressor.prototype, {
 
             return make_node(AST_Number, orig, { value: val });
           case "boolean":
-            return make_node(val ? AST_True : AST_False, orig).transform(compressor);
+            return make_node(val ? AST_True : AST_False, orig).optimize(compressor);
           case "undefined":
             return make_node(AST_Undefined, orig).transform(compressor);
           default:
@@ -26301,8 +26461,13 @@ merge(Compressor.prototype, {
                     // Constant single use vars can be replaced in any scope.
                     if (var_decl.value.is_constant()) {
                         var ctt = new TreeTransformer(function(node) {
+                            var parent = ctt.parent();
+                            if (parent instanceof AST_IterationStatement
+                                && (parent.condition === node || parent.init === node)) {
+                                return node;
+                            }
                             if (node === ref)
-                                return replace_var(node, ctt.parent(), true);
+                                return replace_var(node, parent, true);
                         });
                         stat.transform(ctt);
                         continue;
@@ -26371,10 +26536,7 @@ merge(Compressor.prototype, {
             return statements;
 
             function is_lvalue(node, parent) {
-                return node instanceof AST_SymbolRef && (
-                    (parent instanceof AST_Assign && node === parent.left)
-                    || (parent instanceof AST_Unary && parent.expression === node
-                        && (parent.operator == "++" || parent.operator == "--")));
+                return node instanceof AST_SymbolRef && isLHS(node, parent);
             }
             function replace_var(node, parent, is_constant) {
                 if (is_lvalue(node, parent)) return node;
@@ -26391,7 +26553,7 @@ merge(Compressor.prototype, {
                 // Further optimize statement after substitution.
                 stat.reset_opt_flags(compressor);
 
-                compressor.warn("Replacing " + (is_constant ? "constant" : "variable") +
+                compressor.warn("Collapsing " + (is_constant ? "constant" : "variable") +
                     " " + var_name + " [{file}:{line},{col}]", node.start);
                 CHANGED = true;
                 return value;
@@ -26539,7 +26701,7 @@ merge(Compressor.prototype, {
                             CHANGED = true;
                             stat = stat.clone();
                             stat.alternative = ret[0] || make_node(AST_Return, stat, {
-                                value: make_node(AST_Undefined, stat)
+                                value: null
                             });
                             ret[0] = stat.transform(compressor);
                             continue loop;
@@ -26572,7 +26734,7 @@ merge(Compressor.prototype, {
                             && !stat.alternative) {
                             CHANGED = true;
                             ret.push(make_node(AST_Return, ret[0], {
-                                value: make_node(AST_Undefined, ret[0])
+                                value: null
                             }).transform(compressor));
                             ret.unshift(stat);
                             continue loop;
@@ -26829,6 +26991,10 @@ merge(Compressor.prototype, {
         }));
     };
 
+    function is_undefined(node) {
+        return node instanceof AST_Undefined || node.is_undefined;
+    }
+
     /* -----[ boolean/negation helpers ]----- */
 
     // methods to determine whether an expression has a boolean result type
@@ -26859,6 +27025,34 @@ merge(Compressor.prototype, {
         node.DEFMETHOD("is_boolean", func);
     });
 
+    // methods to determine if an expression has a numeric result type
+    (function (def){
+        def(AST_Node, return_false);
+        def(AST_Number, return_true);
+        var unary = makePredicate("+ - ~ ++ --");
+        def(AST_Unary, function(){
+            return unary(this.operator);
+        });
+        var binary = makePredicate("- * / % & | ^ << >> >>>");
+        def(AST_Binary, function(compressor){
+            return binary(this.operator) || this.operator == "+"
+                && this.left.is_number(compressor)
+                && this.right.is_number(compressor);
+        });
+        var assign = makePredicate("-= *= /= %= &= |= ^= <<= >>= >>>=");
+        def(AST_Assign, function(compressor){
+            return assign(this.operator) || this.right.is_number(compressor);
+        });
+        def(AST_Seq, function(compressor){
+            return this.cdr.is_number(compressor);
+        });
+        def(AST_Conditional, function(compressor){
+            return this.consequent.is_number(compressor) && this.alternative.is_number(compressor);
+        });
+    })(function(node, func){
+        node.DEFMETHOD("is_number", func);
+    });
+
     // methods to determine if an expression has a string result type
     (function (def){
         def(AST_Node, return_false);
@@ -26879,18 +27073,12 @@ merge(Compressor.prototype, {
         def(AST_Conditional, function(compressor){
             return this.consequent.is_string(compressor) && this.alternative.is_string(compressor);
         });
-        def(AST_Call, function(compressor){
-            return compressor.option("unsafe")
-                && this.expression instanceof AST_SymbolRef
-                && this.expression.name == "String"
-                && this.expression.undeclared();
-        });
     })(function(node, func){
         node.DEFMETHOD("is_string", func);
     });
 
     function isLHS(node, parent) {
-        return parent instanceof AST_Unary && (parent.operator === "++" || parent.operator === "--")
+        return parent instanceof AST_Unary && (parent.operator == "++" || parent.operator == "--")
             || parent instanceof AST_Assign && parent.left === node;
     }
 
@@ -27040,11 +27228,7 @@ merge(Compressor.prototype, {
         def(AST_Statement, function(){
             throw new Error(string_template("Cannot evaluate a statement [{file}:{line},{col}]", this.start));
         });
-        def(AST_Function, function(){
-            // XXX: AST_Function inherits from AST_Scope, which itself
-            // inherits from AST_Statement; however, an AST_Function
-            // isn't really a statement.  This could byte in other
-            // places too. :-( Wish JS had multiple inheritance.
+        def(AST_Lambda, function(){
             throw def;
         });
         function ev(node, compressor) {
@@ -27072,7 +27256,9 @@ merge(Compressor.prototype, {
                 for (var i = 0, len = this.properties.length; i < len; i++) {
                     var prop = this.properties[i];
                     var key = prop.key;
-                    if (key instanceof AST_Node) {
+                    if (key instanceof AST_Symbol) {
+                        key = key.name;
+                    } else if (key instanceof AST_Node) {
                         key = ev(key, compressor);
                     }
                     if (typeof Object.prototype[key] === 'function') {
@@ -27150,14 +27336,14 @@ merge(Compressor.prototype, {
             this._evaluating = true;
             try {
                 var d = this.definition();
-                if (compressor.option("reduce_vars") && !d.modified && d.init) {
+                if (compressor.option("reduce_vars") && d.fixed) {
                     if (compressor.option("unsafe")) {
-                        if (d.init._evaluated === undefined) {
-                            d.init._evaluated = ev(d.init, compressor);
+                        if (!HOP(d.fixed, "_evaluated")) {
+                            d.fixed._evaluated = ev(d.fixed, compressor);
                         }
-                        return d.init._evaluated;
+                        return d.fixed._evaluated;
                     }
-                    return ev(d.init, compressor);
+                    return ev(d.fixed, compressor);
                 }
             } finally {
                 this._evaluating = false;
@@ -27267,9 +27453,7 @@ merge(Compressor.prototype, {
             && (comments = this.start.comments_before)
             && comments.length
             && /[@#]__PURE__/.test((last_comment = comments[comments.length - 1]).value)) {
-            compressor.warn("Dropping __PURE__ call [{file}:{line},{col}]", this.start);
-            last_comment.value = last_comment.value.replace(/[@#]__PURE__/g, ' ');
-            pure = true;
+            pure = last_comment;
         }
         return this.pure = pure;
     });
@@ -27531,10 +27715,12 @@ merge(Compressor.prototype, {
                         node.name = null;
                     }
                     if (node instanceof AST_Lambda && !(node instanceof AST_Accessor)) {
-                        if (!compressor.option("keep_fargs")) {
-                            for (var a = node.argnames, i = a.length; --i >= 0;) {
-                                var sym = a[i];
-                                if (!(sym.definition().id in in_use_ids)) {
+                        var trim = !compressor.option("keep_fargs");
+                        for (var a = node.argnames, i = a.length; --i >= 0;) {
+                            var sym = a[i];
+                            if (!(sym.definition().id in in_use_ids)) {
+                                sym.__unused = true;
+                                if (trim) {
                                     a.pop();
                                     compressor.warn("Dropping unused function argument {name} [{file}:{line},{col}]", {
                                         name : sym.name,
@@ -27543,7 +27729,9 @@ merge(Compressor.prototype, {
                                         col  : sym.start.col
                                     });
                                 }
-                                else break;
+                            }
+                            else {
+                                trim = false;
                             }
                         }
                     }
@@ -27561,6 +27749,7 @@ merge(Compressor.prototype, {
                     }
                     if (drop_vars && node instanceof AST_Definitions && !(tt.parent() instanceof AST_ForIn)) {
                         var def = node.definitions.filter(function(def){
+                            if (def.value) def.value = def.value.transform(tt);
                             if (def.name.definition().id in in_use_ids) return true;
                             var w = {
                                 name : def.name.name,
@@ -27568,8 +27757,7 @@ merge(Compressor.prototype, {
                                 line : def.name.start.line,
                                 col  : def.name.start.col
                             };
-                            if (def.value && def.value.has_side_effects(compressor)) {
-                                def._unused_side_effects = true;
+                            if (def.value && (def._unused_side_effects = def.value.drop_side_effect_free(compressor))) {
                                 compressor.warn("Side effects in initialization of unused variable {name} [{file}:{line},{col}]", w);
                                 return true;
                             }
@@ -27589,7 +27777,7 @@ merge(Compressor.prototype, {
                         for (var i = 0; i < def.length;) {
                             var x = def[i];
                             if (x._unused_side_effects) {
-                                side_effects.push(x.value);
+                                side_effects.push(x._unused_side_effects);
                                 def.splice(i, 1);
                             } else {
                                 if (side_effects.length > 0) {
@@ -27627,8 +27815,9 @@ merge(Compressor.prototype, {
                         && node.operator == "="
                         && node.left instanceof AST_SymbolRef) {
                         var def = node.left.definition();
-                        if (!(def.id in in_use_ids) && self.variables.get(def.name) === def) {
-                            return node.right;
+                        if (!(def.id in in_use_ids)
+                            && self.variables.get(def.name) === def) {
+                            return maintain_this_binding(tt.parent(), node, node.right.transform(tt));
                         }
                     }
                     if (node instanceof AST_For) {
@@ -27818,7 +28007,19 @@ merge(Compressor.prototype, {
         def(AST_Constant, return_null);
         def(AST_This, return_null);
         def(AST_Call, function(compressor, first_in_statement){
-            if (!this.has_pure_annotation(compressor) && compressor.pure_funcs(this)) return this;
+            if (!this.has_pure_annotation(compressor) && compressor.pure_funcs(this)) {
+                if (this.expression instanceof AST_Function
+                    && (!this.expression.name || !this.expression.name.definition().references.length)) {
+                    var node = this.clone();
+                    node.expression = node.expression.process_expression(false);
+                    return node;
+                }
+                return this;
+            }
+            if (this.pure) {
+                compressor.warn("Dropping __PURE__ call [{file}:{line},{col}]", this.start);
+                this.pure.value = this.pure.value.replace(/[@#]__PURE__/g, ' ');
+            }
             var args = trim(this.args, compressor, first_in_statement);
             return args && AST_Seq.from_array(args);
         });
@@ -27870,8 +28071,17 @@ merge(Compressor.prototype, {
               case "typeof":
                 if (this.expression instanceof AST_SymbolRef) return null;
               default:
-                if (first_in_statement && is_iife_call(this.expression)) return this;
-                return this.expression.drop_side_effect_free(compressor, first_in_statement);
+                var expression = this.expression.drop_side_effect_free(compressor, first_in_statement);
+                if (first_in_statement
+                    && this instanceof AST_UnaryPrefix
+                    && is_iife_call(expression)) {
+                    if (expression === this.expression && this.operator.length === 1) return this;
+                    return make_node(AST_UnaryPrefix, this, {
+                        operator: this.operator.length === 1 ? this.operator : "!",
+                        expression: expression
+                    });
+                }
+                return expression;
             }
         });
         def(AST_SymbolRef, function() {
@@ -27919,10 +28129,6 @@ merge(Compressor.prototype, {
     OPT(AST_SimpleStatement, function(self, compressor){
         if (compressor.option("side_effects")) {
             var body = self.body;
-            if (!body.has_side_effects(compressor)) {
-                compressor.warn("Dropping side-effect-free statement [{file}:{line},{col}]", self.start);
-                return make_node(AST_EmptyStatement, self);
-            }
             var node = body.drop_side_effect_free(compressor, true);
             if (!node) {
                 compressor.warn("Dropping side-effect-free statement [{file}:{line},{col}]", self.start);
@@ -27952,7 +28158,7 @@ merge(Compressor.prototype, {
                 }
             } else {
                 // self instanceof AST_Do
-                return self.body;
+                return self;
             }
         }
         if (self instanceof AST_While) {
@@ -28075,7 +28281,7 @@ merge(Compressor.prototype, {
             // here because they are only used in an equality comparison later on.
             self.condition = negated;
             var tmp = self.body;
-            self.body = self.alternative || make_node(AST_EmptyStatement);
+            self.body = self.alternative || make_node(AST_EmptyStatement, self);
             self.alternative = tmp;
         }
         if (is_empty(self.body) && is_empty(self.alternative)) {
@@ -28133,8 +28339,8 @@ merge(Compressor.prototype, {
             return make_node(self.body.CTOR, self, {
                 value: make_node(AST_Conditional, self, {
                     condition   : self.condition,
-                    consequent  : self.body.value || make_node(AST_Undefined, self.body).optimize(compressor),
-                    alternative : self.alternative.value || make_node(AST_Undefined, self.alternative).optimize(compressor)
+                    consequent  : self.body.value || make_node(AST_Undefined, self.body),
+                    alternative : self.alternative.value || make_node(AST_Undefined, self.alternative)
                 })
             }).transform(compressor);
         }
@@ -28301,8 +28507,50 @@ merge(Compressor.prototype, {
     });
 
     OPT(AST_Call, function(self, compressor){
+        var exp = self.expression;
+        if (compressor.option("reduce_vars")
+            && exp instanceof AST_SymbolRef) {
+            var def = exp.definition();
+            if (def.fixed instanceof AST_Defun) {
+                def.fixed = make_node(AST_Function, def.fixed, def.fixed).clone(true);
+            }
+            if (def.fixed instanceof AST_Function) {
+                exp = def.fixed;
+                if (compressor.option("unused")
+                    && def.references.length == 1
+                    && !(def.scope.uses_arguments
+                        && def.orig[0] instanceof AST_SymbolFunarg)
+                    && !def.scope.uses_eval
+                    && compressor.find_parent(AST_Scope) === def.scope) {
+                    self.expression = exp;
+                }
+            }
+        }
+        if (compressor.option("unused")
+            && exp instanceof AST_Function
+            && !exp.uses_arguments
+            && !exp.uses_eval) {
+            var pos = 0, last = 0;
+            for (var i = 0, len = self.args.length; i < len; i++) {
+                var trim = i >= exp.argnames.length;
+                if (trim || exp.argnames[i].__unused) {
+                    var node = self.args[i].drop_side_effect_free(compressor);
+                    if (node) {
+                        self.args[pos++] = node;
+                    } else if (!trim) {
+                        self.args[pos++] = make_node(AST_Number, self.args[i], {
+                            value: 0
+                        });
+                        continue;
+                    }
+                } else {
+                    self.args[pos++] = self.args[i];
+                }
+                last = pos;
+            }
+            self.args.length = last;
+        }
         if (compressor.option("unsafe")) {
-            var exp = self.expression;
             if (exp instanceof AST_SymbolRef && exp.undeclared()) {
                 switch (exp.name) {
                   case "Array":
@@ -28340,7 +28588,7 @@ merge(Compressor.prototype, {
                   case "Boolean":
                     if (self.args.length == 0) return make_node(AST_False, self);
                     if (self.args.length == 1) return make_node(AST_UnaryPrefix, self, {
-                        expression: make_node(AST_UnaryPrefix, null, {
+                        expression: make_node(AST_UnaryPrefix, self, {
                             expression: self.args[0],
                             operator: "!"
                         }),
@@ -28476,16 +28724,24 @@ merge(Compressor.prototype, {
                 return best_of(self, node);
             }
         }
-        if (compressor.option("side_effects")) {
-            if (self.expression instanceof AST_Function
-                && self.args.length == 0
-                && !AST_Block.prototype.has_side_effects.call(self.expression, compressor)) {
-                return make_node(AST_Undefined, self).transform(compressor);
+        if (exp instanceof AST_Function) {
+            if (exp.body[0] instanceof AST_Return) {
+                var value = exp.body[0].value;
+                if (!value || value.is_constant()) {
+                    var args = self.args.concat(value || make_node(AST_Undefined, self));
+                    return AST_Seq.from_array(args).transform(compressor);
+                }
+            }
+            if (compressor.option("side_effects")) {
+                if (!AST_Block.prototype.has_side_effects.call(exp, compressor)) {
+                    var args = self.args.concat(make_node(AST_Undefined, self));
+                    return AST_Seq.from_array(args).transform(compressor);
+                }
             }
         }
         if (compressor.option("drop_console")) {
-            if (self.expression instanceof AST_PropAccess) {
-                var name = self.expression.expression;
+            if (exp instanceof AST_PropAccess) {
+                var name = exp.expression;
                 while (name.expression) {
                     name = name.expression;
                 }
@@ -28527,30 +28783,41 @@ merge(Compressor.prototype, {
         self.car = self.car.drop_side_effect_free(compressor, first_in_statement(compressor));
         if (!self.car) return maintain_this_binding(compressor.parent(), self, self.cdr);
         if (compressor.option("cascade")) {
+            var left;
             if (self.car instanceof AST_Assign
                 && !self.car.left.has_side_effects(compressor)) {
-                if (self.car.left.equivalent_to(self.cdr)) {
-                    return self.car;
-                }
-                if (self.cdr instanceof AST_Call
-                    && self.cdr.expression.equivalent_to(self.car.left)) {
-                    self.cdr.expression = self.car;
-                    return self.cdr;
-                }
+                left = self.car.left;
+            } else if (self.car instanceof AST_Unary
+                && (self.car.operator == "++" || self.car.operator == "--")) {
+                left = self.car.expression;
             }
-            if (!self.car.has_side_effects(compressor)
-                && !self.cdr.has_side_effects(compressor)
-                && self.car.equivalent_to(self.cdr)) {
-                return self.car;
+            if (left) {
+                var parent, field;
+                var cdr = self.cdr;
+                while (true) {
+                    if (cdr.equivalent_to(left)) {
+                        var car = self.car instanceof AST_UnaryPostfix ? make_node(AST_UnaryPrefix, self.car, {
+                            operator: self.car.operator,
+                            expression: left
+                        }) : self.car;
+                        if (parent) {
+                            parent[field] = car;
+                            return self.cdr;
+                        }
+                        return car;
+                    }
+                    if (cdr instanceof AST_Binary && !(cdr instanceof AST_Assign)) {
+                        field = cdr.left.is_constant() ? "right" : "left";
+                    } else if (cdr instanceof AST_Call
+                        || cdr instanceof AST_Unary && cdr.operator != "++" && cdr.operator != "--") {
+                        field = "expression";
+                    } else break;
+                    parent = cdr;
+                    cdr = cdr[field];
+                }
             }
         }
-        if (self.cdr instanceof AST_UnaryPrefix
-            && self.cdr.operator == "void"
-            && !self.cdr.expression.has_side_effects(compressor)) {
-            self.cdr.expression = self.car;
-            return self.cdr;
-        }
-        if (self.cdr instanceof AST_Undefined) {
+        if (is_undefined(self.cdr)) {
             return make_node(AST_UnaryPrefix, self, {
                 operator   : "void",
                 expression : self.car
@@ -28578,8 +28845,20 @@ merge(Compressor.prototype, {
     });
 
     OPT(AST_UnaryPrefix, function(self, compressor){
-        self = self.lift_sequences(compressor);
+        var seq = self.lift_sequences(compressor);
+        if (seq !== self) {
+            return seq;
+        }
         var e = self.expression;
+        if (compressor.option("side_effects") && self.operator == "void") {
+            e = e.drop_side_effect_free(compressor);
+            if (e) {
+                self.expression = e;
+                return self;
+            } else {
+                return make_node(AST_Undefined, self).transform(compressor);
+            }
+        }
         if (compressor.option("booleans") && compressor.in_boolean_context()) {
             switch (self.operator) {
               case "!":
@@ -28596,13 +28875,10 @@ merge(Compressor.prototype, {
                 // typeof always returns a non-empty string, thus it's
                 // always true in booleans
                 compressor.warn("Boolean expression always true [{file}:{line},{col}]", self.start);
-                if (self.expression.has_side_effects(compressor)) {
-                    return make_node(AST_Seq, self, {
-                        car: self.expression,
-                        cdr: make_node(AST_True, self)
-                    });
-                }
-                return make_node(AST_True, self);
+                return make_node(AST_Seq, self, {
+                    car: e,
+                    cdr: make_node(AST_True, self)
+                }).optimize(compressor);
             }
         }
         return self.evaluate(compressor)[0];
@@ -28653,8 +28929,14 @@ merge(Compressor.prototype, {
                 right: rhs[0]
             }).optimize(compressor);
         }
-        function reverse(op, force) {
-            if (force || !(self.left.has_side_effects(compressor) || self.right.has_side_effects(compressor))) {
+        function reversible() {
+            return self.left instanceof AST_Constant
+                || self.right instanceof AST_Constant
+                || !self.left.has_side_effects(compressor)
+                    && !self.right.has_side_effects(compressor);
+        }
+        function reverse(op) {
+            if (reversible()) {
                 if (op) self.operator = op;
                 var tmp = self.left;
                 self.left = self.right;
@@ -28670,7 +28952,7 @@ merge(Compressor.prototype, {
 
                 if (!(self.left instanceof AST_Binary
                       && PRECEDENCE[self.left.operator] >= PRECEDENCE[self.operator])) {
-                    reverse(null, true);
+                    reverse();
                 }
             }
             if (/^[!=]==?$/.test(self.operator)) {
@@ -28705,6 +28987,7 @@ merge(Compressor.prototype, {
           case "===":
           case "!==":
             if ((self.left.is_string(compressor) && self.right.is_string(compressor)) ||
+                (self.left.is_number(compressor) && self.right.is_number(compressor)) ||
                 (self.left.is_boolean() && self.right.is_boolean())) {
                 self.operator = self.operator.substr(0, 2);
             }
@@ -28732,13 +29015,10 @@ merge(Compressor.prototype, {
             var rr = self.right.evaluate(compressor);
             if ((ll.length > 1 && !ll[1]) || (rr.length > 1 && !rr[1])) {
                 compressor.warn("Boolean && always false [{file}:{line},{col}]", self.start);
-                if (self.left.has_side_effects(compressor)) {
-                    return make_node(AST_Seq, self, {
-                        car: self.left,
-                        cdr: make_node(AST_False)
-                    }).optimize(compressor);
-                }
-                return make_node(AST_False, self);
+                return make_node(AST_Seq, self, {
+                    car: self.left,
+                    cdr: make_node(AST_False, self)
+                }).optimize(compressor);
             }
             if (ll.length > 1 && ll[1]) {
                 return rr[0];
@@ -28752,13 +29032,10 @@ merge(Compressor.prototype, {
             var rr = self.right.evaluate(compressor);
             if ((ll.length > 1 && ll[1]) || (rr.length > 1 && rr[1])) {
                 compressor.warn("Boolean || always true [{file}:{line},{col}]", self.start);
-                if (self.left.has_side_effects(compressor)) {
-                    return make_node(AST_Seq, self, {
-                        car: self.left,
-                        cdr: make_node(AST_True)
-                    }).optimize(compressor);
-                }
-                return make_node(AST_True, self);
+                return make_node(AST_Seq, self, {
+                    car: self.left,
+                    cdr: make_node(AST_True, self)
+                }).optimize(compressor);
             }
             if (ll.length > 1 && !ll[1]) {
                 return rr[0];
@@ -28770,10 +29047,19 @@ merge(Compressor.prototype, {
           case "+":
             var ll = self.left.evaluate(compressor);
             var rr = self.right.evaluate(compressor);
-            if ((ll.length > 1 && ll[0] instanceof AST_String && ll[1] && !self.right.has_side_effects(compressor)) ||
-                (rr.length > 1 && rr[0] instanceof AST_String && rr[1] && !self.left.has_side_effects(compressor))) {
+            if (ll.length > 1 && ll[0] instanceof AST_String && ll[1]) {
                 compressor.warn("+ in boolean context always true [{file}:{line},{col}]", self.start);
-                return make_node(AST_True, self);
+                return make_node(AST_Seq, self, {
+                    car: self.right,
+                    cdr: make_node(AST_True, self)
+                }).optimize(compressor);
+            }
+            if (rr.length > 1 && rr[0] instanceof AST_String && rr[1]) {
+                compressor.warn("+ in boolean context always true [{file}:{line},{col}]", self.start);
+                return make_node(AST_Seq, self, {
+                    car: self.left,
+                    cdr: make_node(AST_True, self)
+                }).optimize(compressor);
             }
             break;
         }
@@ -28794,10 +29080,25 @@ merge(Compressor.prototype, {
                 }
             }
         }
-        if (self.operator == "+" && self.right instanceof AST_String
-            && self.right.getValue() === "" && self.left instanceof AST_Binary
-            && self.left.operator == "+" && self.left.is_string(compressor)) {
-            return self.left;
+        if (self.operator == "+") {
+            if (self.right instanceof AST_String
+                && self.right.getValue() == ""
+                && self.left.is_string(compressor)) {
+                return self.left;
+            }
+            if (self.left instanceof AST_String
+                && self.left.getValue() == ""
+                && self.right.is_string(compressor)) {
+                return self.right;
+            }
+            if (self.left instanceof AST_Binary
+                && self.left.operator == "+"
+                && self.left.left instanceof AST_String
+                && self.left.left.getValue() == ""
+                && self.right.is_string(compressor)) {
+                self.left = self.left.right;
+                return self.transform(compressor);
+            }
         }
         if (compressor.option("evaluate")) {
             switch (self.operator) {
@@ -28824,7 +29125,10 @@ merge(Compressor.prototype, {
                 }
                 break;
             }
-            if (self.operator == "+") {
+            var associative = true;
+            switch (self.operator) {
+              case "+":
+                // "foo" + ("bar" + x) => "foobar" + x
                 if (self.left instanceof AST_Constant
                     && self.right instanceof AST_Binary
                     && self.right.operator == "+"
@@ -28832,7 +29136,7 @@ merge(Compressor.prototype, {
                     && self.right.is_string(compressor)) {
                     self = make_node(AST_Binary, self, {
                         operator: "+",
-                        left: make_node(AST_String, null, {
+                        left: make_node(AST_String, self.left, {
                             value: "" + self.left.getValue() + self.right.left.getValue(),
                             start: self.left.start,
                             end: self.right.left.end
@@ -28840,6 +29144,7 @@ merge(Compressor.prototype, {
                         right: self.right.right
                     });
                 }
+                // (x + "foo") + "bar" => x + "foobar"
                 if (self.right instanceof AST_Constant
                     && self.left instanceof AST_Binary
                     && self.left.operator == "+"
@@ -28848,13 +29153,14 @@ merge(Compressor.prototype, {
                     self = make_node(AST_Binary, self, {
                         operator: "+",
                         left: self.left.left,
-                        right: make_node(AST_String, null, {
+                        right: make_node(AST_String, self.right, {
                             value: "" + self.left.right.getValue() + self.right.getValue(),
                             start: self.left.right.start,
                             end: self.right.end
                         })
                     });
                 }
+                // (x + "foo") + ("bar" + y) => (x + "foobar") + y
                 if (self.left instanceof AST_Binary
                     && self.left.operator == "+"
                     && self.left.is_string(compressor)
@@ -28868,7 +29174,7 @@ merge(Compressor.prototype, {
                         left: make_node(AST_Binary, self.left, {
                             operator: "+",
                             left: self.left.left,
-                            right: make_node(AST_String, null, {
+                            right: make_node(AST_String, self.left.right, {
                                 value: "" + self.left.right.getValue() + self.right.left.getValue(),
                                 start: self.left.right.start,
                                 end: self.right.left.end
@@ -28877,6 +29183,122 @@ merge(Compressor.prototype, {
                         right: self.right.right
                     });
                 }
+                // a + -b => a - b
+                if (self.right instanceof AST_UnaryPrefix
+                    && self.right.operator == "-"
+                    && self.left.is_number(compressor)) {
+                    self = make_node(AST_Binary, self, {
+                        operator: "-",
+                        left: self.left,
+                        right: self.right.expression
+                    });
+                }
+                // -a + b => b - a
+                if (self.left instanceof AST_UnaryPrefix
+                    && self.left.operator == "-"
+                    && reversible()
+                    && self.right.is_number(compressor)) {
+                    self = make_node(AST_Binary, self, {
+                        operator: "-",
+                        left: self.right,
+                        right: self.left.expression
+                    });
+                }
+              case "*":
+                associative = compressor.option("unsafe_math");
+              case "&":
+              case "|":
+              case "^":
+                // a + +b => +b + a
+                if (self.left.is_number(compressor)
+                    && self.right.is_number(compressor)
+                    && reversible()
+                    && !(self.left instanceof AST_Binary
+                        && self.left.operator != self.operator
+                        && PRECEDENCE[self.left.operator] >= PRECEDENCE[self.operator])) {
+                    var reversed = make_node(AST_Binary, self, {
+                        operator: self.operator,
+                        left: self.right,
+                        right: self.left
+                    });
+                    if (self.right instanceof AST_Constant
+                        && !(self.left instanceof AST_Constant)) {
+                        self = best_of(reversed, self);
+                    } else {
+                        self = best_of(self, reversed);
+                    }
+                }
+                if (associative && self.is_number(compressor)) {
+                    // a + (b + c) => (a + b) + c
+                    if (self.right instanceof AST_Binary
+                        && self.right.operator == self.operator) {
+                        self = make_node(AST_Binary, self, {
+                            operator: self.operator,
+                            left: make_node(AST_Binary, self.left, {
+                                operator: self.operator,
+                                left: self.left,
+                                right: self.right.left,
+                                start: self.left.start,
+                                end: self.right.left.end
+                            }),
+                            right: self.right.right
+                        });
+                    }
+                    // (n + 2) + 3 => 5 + n
+                    // (2 * n) * 3 => 6 + n
+                    if (self.right instanceof AST_Constant
+                        && self.left instanceof AST_Binary
+                        && self.left.operator == self.operator) {
+                        if (self.left.left instanceof AST_Constant) {
+                            self = make_node(AST_Binary, self, {
+                                operator: self.operator,
+                                left: make_node(AST_Binary, self.left, {
+                                    operator: self.operator,
+                                    left: self.left.left,
+                                    right: self.right,
+                                    start: self.left.left.start,
+                                    end: self.right.end
+                                }),
+                                right: self.left.right
+                            });
+                        } else if (self.left.right instanceof AST_Constant) {
+                            self = make_node(AST_Binary, self, {
+                                operator: self.operator,
+                                left: make_node(AST_Binary, self.left, {
+                                    operator: self.operator,
+                                    left: self.left.right,
+                                    right: self.right,
+                                    start: self.left.right.start,
+                                    end: self.right.end
+                                }),
+                                right: self.left.left
+                            });
+                        }
+                    }
+                    // (a | 1) | (2 | d) => (3 | a) | b
+                    if (self.left instanceof AST_Binary
+                        && self.left.operator == self.operator
+                        && self.left.right instanceof AST_Constant
+                        && self.right instanceof AST_Binary
+                        && self.right.operator == self.operator
+                        && self.right.left instanceof AST_Constant) {
+                        self = make_node(AST_Binary, self, {
+                            operator: self.operator,
+                            left: make_node(AST_Binary, self.left, {
+                                operator: self.operator,
+                                left: make_node(AST_Binary, self.left.left, {
+                                    operator: self.operator,
+                                    left: self.left.right,
+                                    right: self.right.left,
+                                    start: self.left.right.start,
+                                    end: self.right.left.end
+                                }),
+                                right: self.left.left
+                            }),
+                            right: self.right.right
+                        });
+                    }
+                }
             }
         }
         // x && (y && z)  ==>  x && y && z
@@ -28909,11 +29331,13 @@ merge(Compressor.prototype, {
             return def;
         }
         // testing against !self.scope.uses_with first is an optimization
-        if (self.undeclared() && !isLHS(self, compressor.parent())
+        if (compressor.option("screw_ie8")
+            && self.undeclared()
+            && !isLHS(self, compressor.parent())
             && (!self.scope.uses_with || !compressor.find_parent(AST_With))) {
             switch (self.name) {
               case "undefined":
-                return make_node(AST_Undefined, self);
+                return make_node(AST_Undefined, self).transform(compressor);
               case "NaN":
                 return make_node(AST_NaN, self).transform(compressor);
               case "Infinity":
@@ -28922,9 +29346,9 @@ merge(Compressor.prototype, {
         }
         if (compressor.option("evaluate") && compressor.option("reduce_vars")) {
             var d = self.definition();
-            if (!d.modified && d.init) {
+            if (d.fixed) {
                 if (d.should_replace === undefined) {
-                    var init = d.init.evaluate(compressor);
+                    var init = d.fixed.evaluate(compressor);
                     if (init.length > 1) {
                         var value = init[0].print_to_string().length;
                         var name = d.name.length;
@@ -28956,11 +29380,13 @@ merge(Compressor.prototype, {
             var scope = compressor.find_parent(AST_Scope);
             var undef = scope.find_variable("undefined");
             if (undef) {
-                return make_node(AST_SymbolRef, self, {
+                var ref = make_node(AST_SymbolRef, self, {
                     name   : "undefined",
                     scope  : scope,
                     thedef : undef
                 });
+                ref.is_undefined = true;
+                return ref;
             }
         }
         return self;
@@ -29023,7 +29449,8 @@ merge(Compressor.prototype, {
             && alternative instanceof AST_Assign
             && consequent.operator == alternative.operator
             && consequent.left.equivalent_to(alternative.left)
-            && !consequent.left.has_side_effects(compressor)
+            && (!consequent.left.has_side_effects(compressor)
+                || !self.condition.has_side_effects(compressor))
            ) {
             /*
              * Stuff like this:
@@ -29041,25 +29468,19 @@ merge(Compressor.prototype, {
                 })
             });
         }
+        // x ? y(a) : y(b) --> y(x ? a : b)
         if (consequent instanceof AST_Call
             && alternative.TYPE === consequent.TYPE
-            && consequent.args.length == alternative.args.length
-            && !consequent.expression.has_side_effects(compressor)
-            && consequent.expression.equivalent_to(alternative.expression)) {
-            if (consequent.args.length == 0) {
-                return make_node(AST_Seq, self, {
-                    car: self.condition,
-                    cdr: consequent
-                });
-            }
-            if (consequent.args.length == 1) {
-                consequent.args[0] = make_node(AST_Conditional, self, {
-                    condition: self.condition,
-                    consequent: consequent.args[0],
-                    alternative: alternative.args[0]
-                });
-                return consequent;
-            }
+            && consequent.args.length == 1
+            && alternative.args.length == 1
+            && consequent.expression.equivalent_to(alternative.expression)
+            && !consequent.expression.has_side_effects(compressor)) {
+            consequent.args[0] = make_node(AST_Conditional, self, {
+                condition: self.condition,
+                consequent: consequent.args[0],
+                alternative: alternative.args[0]
+            });
+            return consequent;
         }
         // x?y?z:a:a --> x&&y?z:a
         if (consequent instanceof AST_Conditional
@@ -29074,16 +29495,12 @@ merge(Compressor.prototype, {
                 alternative: alternative
             });
         }
-        // y?1:1 --> 1
-        if (consequent.is_constant()
-            && alternative.is_constant()
-            && consequent.equivalent_to(alternative)) {
-            var consequent_value = consequent.evaluate(compressor)[0];
-            if (self.condition.has_side_effects(compressor)) {
-                return AST_Seq.from_array([self.condition, consequent_value]);
-            } else {
-                return consequent_value;
-            }
+        // x ? y : y --> x, y
+        if (consequent.equivalent_to(alternative)) {
+            return make_node(AST_Seq, self, {
+                car: self.condition,
+                cdr: consequent
+            }).optimize(compressor);
         }
 
         if (is_true(self.consequent)) {
@@ -29242,8 +29659,12 @@ merge(Compressor.prototype, {
     });
 
     function literals_in_boolean_context(self, compressor) {
-        if (compressor.option("booleans") && compressor.in_boolean_context() && !self.has_side_effects(compressor)) {
-            return make_node(AST_True, self);
+        if (compressor.option("booleans") && compressor.in_boolean_context()) {
+            var best = first_in_statement(compressor) ? best_of_statement : best_of;
+            return best(self, make_node(AST_Seq, self, {
+                car: self,
+                cdr: make_node(AST_True, self)
+            }).optimize(compressor));
         }
         return self;
     };
@@ -29252,7 +29673,7 @@ merge(Compressor.prototype, {
     OPT(AST_RegExp, literals_in_boolean_context);
 
     OPT(AST_Return, function(self, compressor){
-        if (self.value instanceof AST_Undefined) {
+        if (self.value && is_undefined(self.value)) {
             self.value = null;
         }
         return self;
@@ -30419,7 +30840,6 @@ exports.SymbolDef = SymbolDef;
 exports.base54 = base54;
 exports.EXPECT_DIRECTIVE = EXPECT_DIRECTIVE;
 exports.is_some_comments = is_some_comments;
-exports.is_comment5 = is_comment5;
 exports.OutputStream = OutputStream;
 exports.Compressor = Compressor;
 exports.SourceMap = SourceMap;
@@ -33292,9 +33712,6 @@ function identity(value) {
   return value;
 }
 
-var fnPrefix = '!function(){';
-var fnSuffix = '}();';
-
 function processOptions(options) {
   ['html5', 'includeAutoGeneratedTags'].forEach(function(key) {
     if (!(key in options)) {
@@ -33358,17 +33775,13 @@ function processOptions(options) {
     }
     minifyJS.fromString = true;
     (minifyJS.output || (minifyJS.output = {})).inline_script = true;
+    (minifyJS.parse || (minifyJS.parse = {})).bare_returns = false;
     options.minifyJS = function(text, inline) {
       var start = text.match(/^\s*<!--.*/);
       var code = start ? text.slice(start[0].length).replace(/\n\s*-->\s*$/, '') : text;
       try {
-        if (inline) {
-          code = fnPrefix + code + fnSuffix;
-        }
+        minifyJS.parse.bare_returns = inline;
         code = UglifyJS.minify(code, minifyJS).code;
-        if (inline) {
-          code = code.slice(fnPrefix.length, -fnSuffix.length);
-        }
         if (/;$/.test(code)) {
           code = code.slice(0, -1);
         }
index 0166075..f221e55 100644 (file)
@@ -1,20 +1,21 @@
 /*!
- * HTMLMinifier v3.4.0 (http://kangax.github.io/html-minifier/)
+ * HTMLMinifier v3.4.1 (http://kangax.github.io/html-minifier/)
  * Copyright 2010-2017 Juriy "kangax" Zaytsev
  * Licensed under the MIT license
  */
-require=function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b,c){"use strict";function d(a){var b=a.length;if(b%4>0)throw new Error("Invalid string. Length must be a multiple of 4");return"="===a[b-2]?2:"="===a[b-1]?1:0}function e(a){return 3*a.length/4-d(a)}function f(a){var b,c,e,f,g,h,i=a.length;g=d(a),h=new l(3*i/4-g),e=g>0?i-4:i;var j=0;for(b=0,c=0;b<e;b+=4,c+=3)f=k[a.charCodeAt(b)]<<18|k[a.charCodeAt(b+1)]<<12|k[a.charCodeAt(b+2)]<<6|k[a.charCodeAt(b+3)],h[j++]=f>>16&255,h[j++]=f>>8&255,h[j++]=255&f;return 2===g?(f=k[a.charCodeAt(b)]<<2|k[a.charCodeAt(b+1)]>>4,h[j++]=255&f):1===g&&(f=k[a.charCodeAt(b)]<<10|k[a.charCodeAt(b+1)]<<4|k[a.charCodeAt(b+2)]>>2,h[j++]=f>>8&255,h[j++]=255&f),h}function g(a){return j[a>>18&63]+j[a>>12&63]+j[a>>6&63]+j[63&a]}function h(a,b,c){for(var d,e=[],f=b;f<c;f+=3)d=(a[f]<<16)+(a[f+1]<<8)+a[f+2],e.push(g(d));return e.join("")}function i(a){for(var b,c=a.length,d=c%3,e="",f=[],g=16383,i=0,k=c-d;i<k;i+=g)f.push(h(a,i,i+g>k?k:i+g));return 1===d?(b=a[c-1],e+=j[b>>2],e+=j[b<<4&63],e+="=="):2===d&&(b=(a[c-2]<<8)+a[c-1],e+=j[b>>10],e+=j[b>>4&63],e+=j[b<<2&63],e+="="),f.push(e),f.join("")}c.byteLength=e,c.toByteArray=f,c.fromByteArray=i;for(var j=[],k=[],l="undefined"!=typeof Uint8Array?Uint8Array:Array,m="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",n=0,o=m.length;n<o;++n)j[n]=m[n],k[m.charCodeAt(n)]=n;k["-".charCodeAt(0)]=62,k["_".charCodeAt(0)]=63},{}],2:[function(a,b,c){},{}],3:[function(a,b,c){arguments[4][2][0].apply(c,arguments)},{dup:2}],4:[function(a,b,c){(function(b){"use strict";var d=a("buffer"),e=d.Buffer,f=d.SlowBuffer,g=d.kMaxLength||2147483647;c.alloc=function(a,b,c){if("function"==typeof e.alloc)return e.alloc(a,b,c);if("number"==typeof c)throw new TypeError("encoding must not be number");if("number"!=typeof a)throw new TypeError("size must be a number");if(a>g)throw new RangeError("size is too large");var d=c,f=b;void 0===f&&(d=void 0,f=0);var h=new e(a);if("string"==typeof f)for(var i=new e(f,d),j=i.length,k=-1;++k<a;)h[k]=i[k%j];else h.fill(f);return h},c.allocUnsafe=function(a){if("function"==typeof e.allocUnsafe)return e.allocUnsafe(a);if("number"!=typeof a)throw new TypeError("size must be a number");if(a>g)throw new RangeError("size is too large");return new e(a)},c.from=function(a,c,d){if("function"==typeof e.from&&(!b.Uint8Array||Uint8Array.from!==e.from))return e.from(a,c,d);if("number"==typeof a)throw new TypeError('"value" argument must not be a number');if("string"==typeof a)return new e(a,c);if("undefined"!=typeof ArrayBuffer&&a instanceof ArrayBuffer){var f=c;if(1===arguments.length)return new e(a);"undefined"==typeof f&&(f=0);var g=d;if("undefined"==typeof g&&(g=a.byteLength-f),f>=a.byteLength)throw new RangeError("'offset' is out of bounds");if(g>a.byteLength-f)throw new RangeError("'length' is out of bounds");return new e(a.slice(f,f+g))}if(e.isBuffer(a)){var h=new e(a.length);return a.copy(h,0,0,a.length),h}if(a){if(Array.isArray(a)||"undefined"!=typeof ArrayBuffer&&a.buffer instanceof ArrayBuffer||"length"in a)return new e(a);if("Buffer"===a.type&&Array.isArray(a.data))return new e(a.data)}throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")},c.allocUnsafeSlow=function(a){if("function"==typeof e.allocUnsafeSlow)return e.allocUnsafeSlow(a);if("number"!=typeof a)throw new TypeError("size must be a number");if(a>=g)throw new RangeError("size is too large");return new f(a)}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{buffer:5}],5:[function(a,b,c){(function(b){"use strict";function d(){try{var a=new Uint8Array(1);return a.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===a.foo()&&"function"==typeof a.subarray&&0===a.subarray(1,1).byteLength}catch(a){return!1}}function e(){return g.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function f(a,b){if(e()<b)throw new RangeError("Invalid typed array length");return g.TYPED_ARRAY_SUPPORT?(a=new Uint8Array(b),a.__proto__=g.prototype):(null===a&&(a=new g(b)),a.length=b),a}function g(a,b,c){if(!(g.TYPED_ARRAY_SUPPORT||this instanceof g))return new g(a,b,c);if("number"==typeof a){if("string"==typeof b)throw new Error("If encoding is specified then the first argument must be a string");return k(this,a)}return h(this,a,b,c)}function h(a,b,c,d){if("number"==typeof b)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&b instanceof ArrayBuffer?n(a,b,c,d):"string"==typeof b?l(a,b,c):o(a,b)}function i(a){if("number"!=typeof a)throw new TypeError('"size" argument must be a number');if(a<0)throw new RangeError('"size" argument must not be negative')}function j(a,b,c,d){return i(b),b<=0?f(a,b):void 0!==c?"string"==typeof d?f(a,b).fill(c,d):f(a,b).fill(c):f(a,b)}function k(a,b){if(i(b),a=f(a,b<0?0:0|p(b)),!g.TYPED_ARRAY_SUPPORT)for(var c=0;c<b;++c)a[c]=0;return a}function l(a,b,c){if("string"==typeof c&&""!==c||(c="utf8"),!g.isEncoding(c))throw new TypeError('"encoding" must be a valid string encoding');var d=0|r(b,c);a=f(a,d);var e=a.write(b,c);return e!==d&&(a=a.slice(0,e)),a}function m(a,b){var c=b.length<0?0:0|p(b.length);a=f(a,c);for(var d=0;d<c;d+=1)a[d]=255&b[d];return a}function n(a,b,c,d){if(b.byteLength,c<0||b.byteLength<c)throw new RangeError("'offset' is out of bounds");if(b.byteLength<c+(d||0))throw new RangeError("'length' is out of bounds");return b=void 0===c&&void 0===d?new Uint8Array(b):void 0===d?new Uint8Array(b,c):new Uint8Array(b,c,d),g.TYPED_ARRAY_SUPPORT?(a=b,a.__proto__=g.prototype):a=m(a,b),a}function o(a,b){if(g.isBuffer(b)){var c=0|p(b.length);return a=f(a,c),0===a.length?a:(b.copy(a,0,0,c),a)}if(b){if("undefined"!=typeof ArrayBuffer&&b.buffer instanceof ArrayBuffer||"length"in b)return"number"!=typeof b.length||Y(b.length)?f(a,0):m(a,b);if("Buffer"===b.type&&_(b.data))return m(a,b.data)}throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}function p(a){if(a>=e())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+e().toString(16)+" bytes");return 0|a}function q(a){return+a!=a&&(a=0),g.alloc(+a)}function r(a,b){if(g.isBuffer(a))return a.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(a)||a instanceof ArrayBuffer))return a.byteLength;"string"!=typeof a&&(a=""+a);var c=a.length;if(0===c)return 0;for(var d=!1;;)switch(b){case"ascii":case"latin1":case"binary":return c;case"utf8":case"utf-8":case void 0:return T(a).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*c;case"hex":return c>>>1;case"base64":return W(a).length;default:if(d)return T(a).length;b=(""+b).toLowerCase(),d=!0}}function s(a,b,c){var d=!1;if((void 0===b||b<0)&&(b=0),b>this.length)return"";if((void 0===c||c>this.length)&&(c=this.length),c<=0)return"";if(c>>>=0,b>>>=0,c<=b)return"";for(a||(a="utf8");;)switch(a){case"hex":return H(this,b,c);case"utf8":case"utf-8":return D(this,b,c);case"ascii":return F(this,b,c);case"latin1":case"binary":return G(this,b,c);case"base64":return C(this,b,c);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return I(this,b,c);default:if(d)throw new TypeError("Unknown encoding: "+a);a=(a+"").toLowerCase(),d=!0}}function t(a,b,c){var d=a[b];a[b]=a[c],a[c]=d}function u(a,b,c,d,e){if(0===a.length)return-1;if("string"==typeof c?(d=c,c=0):c>2147483647?c=2147483647:c<-2147483648&&(c=-2147483648),c=+c,isNaN(c)&&(c=e?0:a.length-1),c<0&&(c=a.length+c),c>=a.length){if(e)return-1;c=a.length-1}else if(c<0){if(!e)return-1;c=0}if("string"==typeof b&&(b=g.from(b,d)),g.isBuffer(b))return 0===b.length?-1:v(a,b,c,d,e);if("number"==typeof b)return b&=255,g.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?e?Uint8Array.prototype.indexOf.call(a,b,c):Uint8Array.prototype.lastIndexOf.call(a,b,c):v(a,[b],c,d,e);throw new TypeError("val must be string, number or Buffer")}function v(a,b,c,d,e){function f(a,b){return 1===g?a[b]:a.readUInt16BE(b*g)}var g=1,h=a.length,i=b.length;if(void 0!==d&&(d=String(d).toLowerCase(),"ucs2"===d||"ucs-2"===d||"utf16le"===d||"utf-16le"===d)){if(a.length<2||b.length<2)return-1;g=2,h/=2,i/=2,c/=2}var j;if(e){var k=-1;for(j=c;j<h;j++)if(f(a,j)===f(b,k===-1?0:j-k)){if(k===-1&&(k=j),j-k+1===i)return k*g}else k!==-1&&(j-=j-k),k=-1}else for(c+i>h&&(c=h-i),j=c;j>=0;j--){for(var l=!0,m=0;m<i;m++)if(f(a,j+m)!==f(b,m)){l=!1;break}if(l)return j}return-1}function w(a,b,c,d){c=Number(c)||0;var e=a.length-c;d?(d=Number(d),d>e&&(d=e)):d=e;var f=b.length;if(f%2!==0)throw new TypeError("Invalid hex string");d>f/2&&(d=f/2);for(var g=0;g<d;++g){var h=parseInt(b.substr(2*g,2),16);if(isNaN(h))return g;a[c+g]=h}return g}function x(a,b,c,d){return X(T(b,a.length-c),a,c,d)}function y(a,b,c,d){return X(U(b),a,c,d)}function z(a,b,c,d){return y(a,b,c,d)}function A(a,b,c,d){return X(W(b),a,c,d)}function B(a,b,c,d){return X(V(b,a.length-c),a,c,d)}function C(a,b,c){return 0===b&&c===a.length?Z.fromByteArray(a):Z.fromByteArray(a.slice(b,c))}function D(a,b,c){c=Math.min(a.length,c);for(var d=[],e=b;e<c;){var f=a[e],g=null,h=f>239?4:f>223?3:f>191?2:1;if(e+h<=c){var i,j,k,l;switch(h){case 1:f<128&&(g=f);break;case 2:i=a[e+1],128===(192&i)&&(l=(31&f)<<6|63&i,l>127&&(g=l));break;case 3:i=a[e+1],j=a[e+2],128===(192&i)&&128===(192&j)&&(l=(15&f)<<12|(63&i)<<6|63&j,l>2047&&(l<55296||l>57343)&&(g=l));break;case 4:i=a[e+1],j=a[e+2],k=a[e+3],128===(192&i)&&128===(192&j)&&128===(192&k)&&(l=(15&f)<<18|(63&i)<<12|(63&j)<<6|63&k,l>65535&&l<1114112&&(g=l))}}null===g?(g=65533,h=1):g>65535&&(g-=65536,d.push(g>>>10&1023|55296),g=56320|1023&g),d.push(g),e+=h}return E(d)}function E(a){var b=a.length;if(b<=aa)return String.fromCharCode.apply(String,a);for(var c="",d=0;d<b;)c+=String.fromCharCode.apply(String,a.slice(d,d+=aa));return c}function F(a,b,c){var d="";c=Math.min(a.length,c);for(var e=b;e<c;++e)d+=String.fromCharCode(127&a[e]);return d}function G(a,b,c){var d="";c=Math.min(a.length,c);for(var e=b;e<c;++e)d+=String.fromCharCode(a[e]);return d}function H(a,b,c){var d=a.length;(!b||b<0)&&(b=0),(!c||c<0||c>d)&&(c=d);for(var e="",f=b;f<c;++f)e+=S(a[f]);return e}function I(a,b,c){for(var d=a.slice(b,c),e="",f=0;f<d.length;f+=2)e+=String.fromCharCode(d[f]+256*d[f+1]);return e}function J(a,b,c){if(a%1!==0||a<0)throw new RangeError("offset is not uint");if(a+b>c)throw new RangeError("Trying to access beyond buffer length")}function K(a,b,c,d,e,f){if(!g.isBuffer(a))throw new TypeError('"buffer" argument must be a Buffer instance');if(b>e||b<f)throw new RangeError('"value" argument is out of bounds');if(c+d>a.length)throw new RangeError("Index out of range")}function L(a,b,c,d){b<0&&(b=65535+b+1);for(var e=0,f=Math.min(a.length-c,2);e<f;++e)a[c+e]=(b&255<<8*(d?e:1-e))>>>8*(d?e:1-e)}function M(a,b,c,d){b<0&&(b=4294967295+b+1);for(var e=0,f=Math.min(a.length-c,4);e<f;++e)a[c+e]=b>>>8*(d?e:3-e)&255}function N(a,b,c,d,e,f){if(c+d>a.length)throw new RangeError("Index out of range");if(c<0)throw new RangeError("Index out of range")}function O(a,b,c,d,e){return e||N(a,b,c,4,0xf.fffff(e+31),-0xf.fffff(e+31)),$.write(a,b,c,d,23,4),c+4}function P(a,b,c,d,e){return e||N(a,b,c,8,1.7976931348623157e308,-1.7976931348623157e308),$.write(a,b,c,d,52,8),c+8}function Q(a){if(a=R(a).replace(ba,""),a.length<2)return"";for(;a.length%4!==0;)a+="=";return a}function R(a){return a.trim?a.trim():a.replace(/^\s+|\s+$/g,"")}function S(a){return a<16?"0"+a.toString(16):a.toString(16)}function T(a,b){b=b||1/0;for(var c,d=a.length,e=null,f=[],g=0;g<d;++g){if(c=a.charCodeAt(g),c>55295&&c<57344){if(!e){if(c>56319){(b-=3)>-1&&f.push(239,191,189);continue}if(g+1===d){(b-=3)>-1&&f.push(239,191,189);continue}e=c;continue}if(c<56320){(b-=3)>-1&&f.push(239,191,189),e=c;continue}c=(e-55296<<10|c-56320)+65536}else e&&(b-=3)>-1&&f.push(239,191,189);if(e=null,c<128){if((b-=1)<0)break;f.push(c)}else if(c<2048){if((b-=2)<0)break;f.push(c>>6|192,63&c|128)}else if(c<65536){if((b-=3)<0)break;f.push(c>>12|224,c>>6&63|128,63&c|128)}else{if(!(c<1114112))throw new Error("Invalid code point");if((b-=4)<0)break;f.push(c>>18|240,c>>12&63|128,c>>6&63|128,63&c|128)}}return f}function U(a){for(var b=[],c=0;c<a.length;++c)b.push(255&a.charCodeAt(c));return b}function V(a,b){for(var c,d,e,f=[],g=0;g<a.length&&!((b-=2)<0);++g)c=a.charCodeAt(g),d=c>>8,e=c%256,f.push(e),f.push(d);return f}function W(a){return Z.toByteArray(Q(a))}function X(a,b,c,d){for(var e=0;e<d&&!(e+c>=b.length||e>=a.length);++e)b[e+c]=a[e];return e}function Y(a){return a!==a}var Z=a("base64-js"),$=a("ieee754"),_=a("isarray");c.Buffer=g,c.SlowBuffer=q,c.INSPECT_MAX_BYTES=50,g.TYPED_ARRAY_SUPPORT=void 0!==b.TYPED_ARRAY_SUPPORT?b.TYPED_ARRAY_SUPPORT:d(),c.kMaxLength=e(),g.poolSize=8192,g._augment=function(a){return a.__proto__=g.prototype,a},g.from=function(a,b,c){return h(null,a,b,c)},g.TYPED_ARRAY_SUPPORT&&(g.prototype.__proto__=Uint8Array.prototype,g.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&g[Symbol.species]===g&&Object.defineProperty(g,Symbol.species,{value:null,configurable:!0})),g.alloc=function(a,b,c){return j(null,a,b,c)},g.allocUnsafe=function(a){return k(null,a)},g.allocUnsafeSlow=function(a){return k(null,a)},g.isBuffer=function(a){return!(null==a||!a._isBuffer)},g.compare=function(a,b){if(!g.isBuffer(a)||!g.isBuffer(b))throw new TypeError("Arguments must be Buffers");if(a===b)return 0;for(var c=a.length,d=b.length,e=0,f=Math.min(c,d);e<f;++e)if(a[e]!==b[e]){c=a[e],d=b[e];break}return c<d?-1:d<c?1:0},g.isEncoding=function(a){switch(String(a).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}},g.concat=function(a,b){if(!_(a))throw new TypeError('"list" argument must be an Array of Buffers');if(0===a.length)return g.alloc(0);var c;if(void 0===b)for(b=0,c=0;c<a.length;++c)b+=a[c].length;var d=g.allocUnsafe(b),e=0;for(c=0;c<a.length;++c){var f=a[c];if(!g.isBuffer(f))throw new TypeError('"list" argument must be an Array of Buffers');f.copy(d,e),e+=f.length}return d},g.byteLength=r,g.prototype._isBuffer=!0,g.prototype.swap16=function(){var a=this.length;if(a%2!==0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var b=0;b<a;b+=2)t(this,b,b+1);return this},g.prototype.swap32=function(){var a=this.length;if(a%4!==0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var b=0;b<a;b+=4)t(this,b,b+3),t(this,b+1,b+2);return this},g.prototype.swap64=function(){var a=this.length;if(a%8!==0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var b=0;b<a;b+=8)t(this,b,b+7),t(this,b+1,b+6),t(this,b+2,b+5),t(this,b+3,b+4);return this},g.prototype.toString=function(){var a=0|this.length;return 0===a?"":0===arguments.length?D(this,0,a):s.apply(this,arguments)},g.prototype.equals=function(a){if(!g.isBuffer(a))throw new TypeError("Argument must be a Buffer");return this===a||0===g.compare(this,a)},g.prototype.inspect=function(){var a="",b=c.INSPECT_MAX_BYTES;return this.length>0&&(a=this.toString("hex",0,b).match(/.{2}/g).join(" "),this.length>b&&(a+=" ... ")),"<Buffer "+a+">"},g.prototype.compare=function(a,b,c,d,e){if(!g.isBuffer(a))throw new TypeError("Argument must be a Buffer");if(void 0===b&&(b=0),void 0===c&&(c=a?a.length:0),void 0===d&&(d=0),void 0===e&&(e=this.length),b<0||c>a.length||d<0||e>this.length)throw new RangeError("out of range index");if(d>=e&&b>=c)return 0;if(d>=e)return-1;if(b>=c)return 1;if(b>>>=0,c>>>=0,d>>>=0,e>>>=0,this===a)return 0;for(var f=e-d,h=c-b,i=Math.min(f,h),j=this.slice(d,e),k=a.slice(b,c),l=0;l<i;++l)if(j[l]!==k[l]){f=j[l],h=k[l];break}return f<h?-1:h<f?1:0},g.prototype.includes=function(a,b,c){return this.indexOf(a,b,c)!==-1},g.prototype.indexOf=function(a,b,c){return u(this,a,b,c,!0)},g.prototype.lastIndexOf=function(a,b,c){return u(this,a,b,c,!1)},g.prototype.write=function(a,b,c,d){if(void 0===b)d="utf8",c=this.length,b=0;else if(void 0===c&&"string"==typeof b)d=b,c=this.length,b=0;else{if(!isFinite(b))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");b|=0,isFinite(c)?(c|=0,void 0===d&&(d="utf8")):(d=c,c=void 0)}var e=this.length-b;if((void 0===c||c>e)&&(c=e),a.length>0&&(c<0||b<0)||b>this.length)throw new RangeError("Attempt to write outside buffer bounds");d||(d="utf8");for(var f=!1;;)switch(d){case"hex":return w(this,a,b,c);case"utf8":case"utf-8":return x(this,a,b,c);case"ascii":return y(this,a,b,c);case"latin1":case"binary":return z(this,a,b,c);case"base64":return A(this,a,b,c);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return B(this,a,b,c);default:if(f)throw new TypeError("Unknown encoding: "+d);d=(""+d).toLowerCase(),f=!0}},g.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var aa=4096;g.prototype.slice=function(a,b){var c=this.length;a=~~a,b=void 0===b?c:~~b,a<0?(a+=c,a<0&&(a=0)):a>c&&(a=c),b<0?(b+=c,b<0&&(b=0)):b>c&&(b=c),b<a&&(b=a);var d;if(g.TYPED_ARRAY_SUPPORT)d=this.subarray(a,b),d.__proto__=g.prototype;else{var e=b-a;d=new g(e,void 0);for(var f=0;f<e;++f)d[f]=this[f+a]}return d},g.prototype.readUIntLE=function(a,b,c){a|=0,b|=0,c||J(a,b,this.length);for(var d=this[a],e=1,f=0;++f<b&&(e*=256);)d+=this[a+f]*e;return d},g.prototype.readUIntBE=function(a,b,c){a|=0,b|=0,c||J(a,b,this.length);for(var d=this[a+--b],e=1;b>0&&(e*=256);)d+=this[a+--b]*e;return d},g.prototype.readUInt8=function(a,b){return b||J(a,1,this.length),this[a]},g.prototype.readUInt16LE=function(a,b){return b||J(a,2,this.length),this[a]|this[a+1]<<8},g.prototype.readUInt16BE=function(a,b){return b||J(a,2,this.length),this[a]<<8|this[a+1]},g.prototype.readUInt32LE=function(a,b){return b||J(a,4,this.length),(this[a]|this[a+1]<<8|this[a+2]<<16)+16777216*this[a+3]},g.prototype.readUInt32BE=function(a,b){return b||J(a,4,this.length),16777216*this[a]+(this[a+1]<<16|this[a+2]<<8|this[a+3])},g.prototype.readIntLE=function(a,b,c){a|=0,b|=0,c||J(a,b,this.length);for(var d=this[a],e=1,f=0;++f<b&&(e*=256);)d+=this[a+f]*e;return e*=128,d>=e&&(d-=Math.pow(2,8*b)),d},g.prototype.readIntBE=function(a,b,c){a|=0,b|=0,c||J(a,b,this.length);for(var d=b,e=1,f=this[a+--d];d>0&&(e*=256);)f+=this[a+--d]*e;return e*=128,f>=e&&(f-=Math.pow(2,8*b)),f},g.prototype.readInt8=function(a,b){return b||J(a,1,this.length),128&this[a]?(255-this[a]+1)*-1:this[a]},g.prototype.readInt16LE=function(a,b){b||J(a,2,this.length);var c=this[a]|this[a+1]<<8;return 32768&c?4294901760|c:c},g.prototype.readInt16BE=function(a,b){b||J(a,2,this.length);var c=this[a+1]|this[a]<<8;return 32768&c?4294901760|c:c},g.prototype.readInt32LE=function(a,b){return b||J(a,4,this.length),this[a]|this[a+1]<<8|this[a+2]<<16|this[a+3]<<24},g.prototype.readInt32BE=function(a,b){return b||J(a,4,this.length),this[a]<<24|this[a+1]<<16|this[a+2]<<8|this[a+3]},g.prototype.readFloatLE=function(a,b){return b||J(a,4,this.length),$.read(this,a,!0,23,4)},g.prototype.readFloatBE=function(a,b){return b||J(a,4,this.length),$.read(this,a,!1,23,4)},g.prototype.readDoubleLE=function(a,b){return b||J(a,8,this.length),$.read(this,a,!0,52,8)},g.prototype.readDoubleBE=function(a,b){return b||J(a,8,this.length),$.read(this,a,!1,52,8)},g.prototype.writeUIntLE=function(a,b,c,d){if(a=+a,b|=0,c|=0,!d){var e=Math.pow(2,8*c)-1;K(this,a,b,c,e,0)}var f=1,g=0;for(this[b]=255&a;++g<c&&(f*=256);)this[b+g]=a/f&255;return b+c},g.prototype.writeUIntBE=function(a,b,c,d){if(a=+a,b|=0,c|=0,!d){var e=Math.pow(2,8*c)-1;K(this,a,b,c,e,0)}var f=c-1,g=1;for(this[b+f]=255&a;--f>=0&&(g*=256);)this[b+f]=a/g&255;return b+c},g.prototype.writeUInt8=function(a,b,c){return a=+a,b|=0,c||K(this,a,b,1,255,0),g.TYPED_ARRAY_SUPPORT||(a=Math.floor(a)),this[b]=255&a,b+1},g.prototype.writeUInt16LE=function(a,b,c){return a=+a,b|=0,c||K(this,a,b,2,65535,0),g.TYPED_ARRAY_SUPPORT?(this[b]=255&a,this[b+1]=a>>>8):L(this,a,b,!0),b+2},g.prototype.writeUInt16BE=function(a,b,c){return a=+a,b|=0,c||K(this,a,b,2,65535,0),g.TYPED_ARRAY_SUPPORT?(this[b]=a>>>8,this[b+1]=255&a):L(this,a,b,!1),b+2},g.prototype.writeUInt32LE=function(a,b,c){return a=+a,b|=0,c||K(this,a,b,4,4294967295,0),g.TYPED_ARRAY_SUPPORT?(this[b+3]=a>>>24,this[b+2]=a>>>16,this[b+1]=a>>>8,this[b]=255&a):M(this,a,b,!0),b+4},g.prototype.writeUInt32BE=function(a,b,c){return a=+a,b|=0,c||K(this,a,b,4,4294967295,0),g.TYPED_ARRAY_SUPPORT?(this[b]=a>>>24,this[b+1]=a>>>16,this[b+2]=a>>>8,this[b+3]=255&a):M(this,a,b,!1),b+4},g.prototype.writeIntLE=function(a,b,c,d){if(a=+a,b|=0,!d){var e=Math.pow(2,8*c-1);K(this,a,b,c,e-1,-e)}var f=0,g=1,h=0;for(this[b]=255&a;++f<c&&(g*=256);)a<0&&0===h&&0!==this[b+f-1]&&(h=1),this[b+f]=(a/g>>0)-h&255;return b+c},g.prototype.writeIntBE=function(a,b,c,d){if(a=+a,b|=0,!d){var e=Math.pow(2,8*c-1);K(this,a,b,c,e-1,-e)}var f=c-1,g=1,h=0;for(this[b+f]=255&a;--f>=0&&(g*=256);)a<0&&0===h&&0!==this[b+f+1]&&(h=1),this[b+f]=(a/g>>0)-h&255;return b+c},g.prototype.writeInt8=function(a,b,c){return a=+a,b|=0,c||K(this,a,b,1,127,-128),g.TYPED_ARRAY_SUPPORT||(a=Math.floor(a)),a<0&&(a=255+a+1),this[b]=255&a,b+1},g.prototype.writeInt16LE=function(a,b,c){return a=+a,b|=0,c||K(this,a,b,2,32767,-32768),g.TYPED_ARRAY_SUPPORT?(this[b]=255&a,this[b+1]=a>>>8):L(this,a,b,!0),b+2},g.prototype.writeInt16BE=function(a,b,c){return a=+a,b|=0,c||K(this,a,b,2,32767,-32768),g.TYPED_ARRAY_SUPPORT?(this[b]=a>>>8,this[b+1]=255&a):L(this,a,b,!1),b+2},g.prototype.writeInt32LE=function(a,b,c){return a=+a,b|=0,c||K(this,a,b,4,2147483647,-2147483648),g.TYPED_ARRAY_SUPPORT?(this[b]=255&a,this[b+1]=a>>>8,this[b+2]=a>>>16,this[b+3]=a>>>24):M(this,a,b,!0),b+4},g.prototype.writeInt32BE=function(a,b,c){return a=+a,b|=0,c||K(this,a,b,4,2147483647,-2147483648),a<0&&(a=4294967295+a+1),g.TYPED_ARRAY_SUPPORT?(this[b]=a>>>24,this[b+1]=a>>>16,this[b+2]=a>>>8,this[b+3]=255&a):M(this,a,b,!1),b+4},g.prototype.writeFloatLE=function(a,b,c){return O(this,a,b,!0,c)},g.prototype.writeFloatBE=function(a,b,c){return O(this,a,b,!1,c)},g.prototype.writeDoubleLE=function(a,b,c){return P(this,a,b,!0,c)},g.prototype.writeDoubleBE=function(a,b,c){return P(this,a,b,!1,c)},g.prototype.copy=function(a,b,c,d){if(c||(c=0),d||0===d||(d=this.length),b>=a.length&&(b=a.length),b||(b=0),d>0&&d<c&&(d=c),d===c)return 0;if(0===a.length||0===this.length)return 0;if(b<0)throw new RangeError("targetStart out of bounds");if(c<0||c>=this.length)throw new RangeError("sourceStart out of bounds");if(d<0)throw new RangeError("sourceEnd out of bounds");d>this.length&&(d=this.length),a.length-b<d-c&&(d=a.length-b+c);var e,f=d-c;if(this===a&&c<b&&b<d)for(e=f-1;e>=0;--e)a[e+b]=this[e+c];else if(f<1e3||!g.TYPED_ARRAY_SUPPORT)for(e=0;e<f;++e)a[e+b]=this[e+c];else Uint8Array.prototype.set.call(a,this.subarray(c,c+f),b);return f},g.prototype.fill=function(a,b,c,d){if("string"==typeof a){if("string"==typeof b?(d=b,b=0,c=this.length):"string"==typeof c&&(d=c,c=this.length),1===a.length){var e=a.charCodeAt(0);e<256&&(a=e)}if(void 0!==d&&"string"!=typeof d)throw new TypeError("encoding must be a string");if("string"==typeof d&&!g.isEncoding(d))throw new TypeError("Unknown encoding: "+d)}else"number"==typeof a&&(a&=255);if(b<0||this.length<b||this.length<c)throw new RangeError("Out of range index");if(c<=b)return this;b>>>=0,c=void 0===c?this.length:c>>>0,a||(a=0);var f;if("number"==typeof a)for(f=b;f<c;++f)this[f]=a;else{var h=g.isBuffer(a)?a:T(new g(a,d).toString()),i=h.length;for(f=0;f<c-b;++f)this[f+b]=h[f%i]}return this};var ba=/[^+\/0-9A-Za-z-_]/g}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"base64-js":1,ieee754:103,isarray:106}],6:[function(a,b,c){b.exports={100:"Continue",101:"Switching Protocols",102:"Processing",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",207:"Multi-Status",208:"Already Reported",226:"IM Used",300:"Multiple Choices",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",307:"Temporary Redirect",308:"Permanent Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Payload Too Large",414:"URI Too Long",415:"Unsupported Media Type",416:"Range Not Satisfiable",417:"Expectation Failed",418:"I'm a teapot",421:"Misdirected Request",422:"Unprocessable Entity",423:"Locked",424:"Failed Dependency",425:"Unordered Collection",426:"Upgrade Required",428:"Precondition Required",429:"Too Many Requests",431:"Request Header Fields Too Large",451:"Unavailable For Legal Reasons",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported",506:"Variant Also Negotiates",507:"Insufficient Storage",508:"Loop Detected",509:"Bandwidth Limit Exceeded",510:"Not Extended",511:"Network Authentication Required"}},{}],7:[function(a,b,c){b.exports=a("./lib/clean")},{"./lib/clean":8}],8:[function(a,b,c){(function(c){function d(a,b,c,d){var h="function"!=typeof c?c:null,i="function"==typeof d?d:"function"==typeof c?c:null,j={stats:{efficiency:0,minifiedSize:0,originalSize:0,startedAt:Date.now(),timeSpent:0},cache:{specificity:{}},errors:[],inlinedStylesheets:[],inputSourceMapTracker:v(),localOnly:!i,options:b,source:null,sourcesContent:{},validator:l(b.compatibility),warnings:[]};return h&&j.inputSourceMapTracker.track(void 0,h),e(j.localOnly)(function(){return w(a,j,function(a){var b=j.options.sourceMap?y:x,c=f(a,j),d=b(c,j),e=g(d,j);return i?i(j.errors.length>0?j.errors:null,e):e})})}function e(a){return a?function(a){return a()}:c.nextTick}function f(a,b){var c;return c=i(a,b),c=r.One in b.options.level?j(a,b):a,c=r.Two in b.options.level?k(a,b,!0):c}function g(a,b){return a.stats=h(a.styles,b),a.errors=b.errors,a.inlinedStylesheets=b.inlinedStylesheets,a.warnings=b.warnings,a}function h(a,b){var c=Date.now(),d=c-b.stats.startedAt;return delete b.stats.startedAt,b.stats.timeSpent=d,b.stats.efficiency=1-a.length/b.stats.originalSize,b.stats.minifiedSize=a.length,b.stats}var i=a("./optimizer/level-0/optimize"),j=a("./optimizer/level-1/optimize"),k=a("./optimizer/level-2/optimize"),l=a("./optimizer/validator"),m=a("./options/compatibility"),n=a("./options/format").formatFrom,o=a("./options/inline"),p=a("./options/inline-request"),q=a("./options/inline-timeout"),r=a("./options/optimization-level").OptimizationLevel,s=a("./options/optimization-level").optimizationLevelFrom,t=a("./options/rebase"),u=a("./options/rebase-to"),v=a("./reader/input-source-map-tracker"),w=a("./reader/read-sources"),x=a("./writer/simple"),y=a("./writer/source-maps"),z=b.exports=function(a){a=a||{},this.options={compatibility:m(a.compatibility),format:n(a.format),inline:o(a.inline),inlineRequest:p(a.inlineRequest),inlineTimeout:q(a.inlineTimeout),level:s(a.level),rebase:t(a.rebase),rebaseTo:u(a.rebaseTo),returnPromise:!!a.returnPromise,sourceMap:!!a.sourceMap,sourceMapInlineSources:!!a.sourceMapInlineSources}};z.prototype.minify=function(a,b,c){var e=this.options;return e.returnPromise?new Promise(function(c,f){d(a,e,b,function(a,b){return a?f(a):c(b)})}):d(a,e,b,c)}}).call(this,a("_process"))},{"./optimizer/level-0/optimize":10,"./optimizer/level-1/optimize":11,"./optimizer/level-2/optimize":30,"./optimizer/validator":56,"./options/compatibility":58,"./options/format":59,"./options/inline":62,"./options/inline-request":60,"./options/inline-timeout":61,"./options/optimization-level":63,"./options/rebase":65,"./options/rebase-to":64,"./reader/input-source-map-tracker":69,"./reader/read-sources":75,"./writer/simple":97,"./writer/source-maps":98,_process:111}],9:[function(a,b,c){var d={ASTERISK:"asterisk",BANG:"bang",BACKSLASH:"backslash",UNDERSCORE:"underscore"};b.exports=d},{}],10:[function(a,b,c){function d(a){return a}b.exports=d},{}],11:[function(a,b,c){function d(a){return a&&"-"==a[1][0]&&parseFloat(a[1])<0}function e(a){return ha.test(a)}function f(a){return ja.test(a)}function g(a){return a.replace(ja,"url(").replace(/\\?\n|\\?\r\n/g,"")}function h(a){var b=a.value;1==b.length&&"none"==b[0][1]&&(b[0][1]="0 0"),1==b.length&&"transparent"==b[0][1]&&(b[0][1]="0 0")}function i(a){var b,c=a.value;3==c.length&&"/"==c[1][1]&&c[0][1]==c[2][1]?b=1:5==c.length&&"/"==c[2][1]&&c[0][1]==c[3][1]&&c[1][1]==c[4][1]?b=2:7==c.length&&"/"==c[3][1]&&c[0][1]==c[4][1]&&c[1][1]==c[5][1]&&c[2][1]==c[6][1]?b=3:9==c.length&&"/"==c[4][1]&&c[0][1]==c[5][1]&&c[1][1]==c[6][1]&&c[2][1]==c[7][1]&&c[3][1]==c[8][1]&&(b=4),b&&(a.value.splice(b),a.dirty=!0)}function j(a,b,c){return b.indexOf("#")===-1&&b.indexOf("rgb")==-1&&b.indexOf("hsl")==-1?I(b):(b=b.replace(/rgb\((\-?\d+),(\-?\d+),(\-?\d+)\)/g,function(a,b,c,d){return K(b,c,d)}).replace(/hsl\((-?\d+),(-?\d+)%?,(-?\d+)%?\)/g,function(a,b,c,d){return J(b,c,d)}).replace(/(^|[^='"])#([0-9a-f]{6})/gi,function(a,b,c){return c[0]==c[1]&&c[2]==c[3]&&c[4]==c[5]?(b+"#"+c[0]+c[2]+c[4]).toLowerCase():(b+"#"+c).toLowerCase()}).replace(/(^|[^='"])#([0-9a-f]{3})/gi,function(a,b,c){return b+"#"+c.toLowerCase()}).replace(/(rgb|rgba|hsl|hsla)\(([^\)]+)\)/g,function(a,b,c){var d=c.split(","),e="hsl"==b&&3==d.length||"hsla"==b&&4==d.length||"rgb"==b&&3==d.length&&c.indexOf("%")>0||"rgba"==b&&4==d.length&&c.indexOf("%")>0;return e?(d[1].indexOf("%")==-1&&(d[1]+="%"),d[2].indexOf("%")==-1&&(d[2]+="%"),b+"("+d.join(",")+")"):a}),c.colors.opacity&&a.indexOf("background")==-1&&(b=b.replace(/(?:rgba|hsla)\(0,0%?,0%?,0\)/g,function(a){return X(b,",").pop().indexOf("gradient(")>-1?a:"transparent"})),I(b))}function k(a){1==a.value.length&&(a.value[0][1]=a.value[0][1].replace(/progid:DXImageTransform\.Microsoft\.(Alpha|Chroma)(\W)/,function(a,b,c){return b.toLowerCase()+c})),a.value[0][1]=a.value[0][1].replace(/,(\S)/g,", $1").replace(/ ?= ?/g,"=")}function l(a,b){var c,d=a.value,e=aa.indexOf(d[0][1])>-1||d[1]&&aa.indexOf(d[1][1])>-1||d[2]&&aa.indexOf(d[2][1])>-1,f=b.level[T.One].optimizeFontWeight,g=0;f&&(e||d[1]&&"/"==d[1][1]||("normal"==d[0][1]&&g++,d[1]&&"normal"==d[1][1]&&g++,d[2]&&"normal"==d[2][1]&&g++,g>1||(ca.indexOf(d[0][1])>-1?c=0:d[1]&&ca.indexOf(d[1][1])>-1?c=1:d[2]&&ca.indexOf(d[2][1])>-1?c=2:ba.indexOf(d[0][1])>-1?c=0:d[1]&&ba.indexOf(d[1][1])>-1?c=1:d[2]&&ba.indexOf(d[2][1])>-1&&(c=2),void 0!==c&&f&&(m(a,c),a.dirty=!0))))}function m(a,b){var c=a.value[b][1];"normal"==c?c="400":"bold"==c&&(c="700"),a.value[b][1]=c}function n(a){var b,c=a.value;4==c.length&&"0"===c[0][1]&&"0"===c[1][1]&&"0"===c[2][1]&&"0"===c[3][1]&&(b=a.name.indexOf("box-shadow")>-1?2:1),b&&(a.value.splice(b),a.dirty=!0)}function o(a){var b=a.value;1==b.length&&"none"==b[0][1]&&(b[0][1]="0")}function p(a,b,c){return da.test(b)?b.replace(da,function(a,b){var d,e=parseInt(b);return 0===e?a:(c.properties.shorterLengthUnits&&c.units.pt&&3*e%4===0&&(d=3*e/4+"pt"),c.properties.shorterLengthUnits&&c.units.pc&&e%16===0&&(d=e/16+"pc"),c.properties.shorterLengthUnits&&c.units.in&&e%96===0&&(d=e/96+"in"),d&&(d=a.substring(0,a.indexOf(b))+d),d&&d.length<a.length?d:a)}):b}function q(a,b,c){var d=b.replace(/(\d)\.($|\D)/g,"$1$2");return c.matcher&&b.indexOf(".")!==-1?d.replace(c.matcher,function(a,b,d,e){var f=c.units[e].multiplier,g=parseInt(b),h=isNaN(g)?0:g,i=parseFloat(d);return Math.round((h+i)*f)/f+e}):d}function r(a,b){return ea.test(b)?b.replace(ea,function(a,b,c){var d;return"ms"==c?d=parseInt(b)/1e3+"s":"s"==c&&(d=1e3*parseFloat(b)+"ms"),d.length<a.length?d:a;
-}):b}function s(a,b,c){return/^(?:\-moz\-calc|\-webkit\-calc|calc)\(/.test(b)?b:"flex"==a||"-ms-flex"==a||"-webkit-flex"==a||"flex-basis"==a||"-webkit-flex-basis"==a?b:b.indexOf("%")>0&&("height"==a||"max-height"==a)?b:b.replace(c,"$10$2").replace(c,"$10$2")}function t(a,b){return a.indexOf("filter")>-1||b.indexOf(" ")==-1||0===b.indexOf("expression")?b:b.indexOf(V.SINGLE_QUOTE)>-1||b.indexOf(V.DOUBLE_QUOTE)>-1?b:(b=b.replace(/\s+/g," "),b.indexOf("calc")>-1&&(b=b.replace(/\) ?\/ ?/g,")/ ")),b.replace(/(\(;?)\s+/g,"$1").replace(/\s+(;?\))/g,"$1").replace(/, /g,","))}function u(a,b){return b.indexOf("0deg")==-1?b:b.replace(/\(0deg\)/g,"(0)")}function v(a,b){return b.indexOf("0")==-1?b:(b.indexOf("-")>-1&&(b=b.replace(/([^\w\d\-]|^)\-0([^\.]|$)/g,"$10$2").replace(/([^\w\d\-]|^)\-0([^\.]|$)/g,"$10$2")),b.replace(/(^|\s)0+([1-9])/g,"$1$2").replace(/(^|\D)\.0+(\D|$)/g,"$10$2").replace(/(^|\D)\.0+(\D|$)/g,"$10$2").replace(/\.([1-9]*)0+(\D|$)/g,function(a,b,c){return(b.length>0?".":"")+b+c}).replace(/(^|\D)0\.(\d)/g,"$1.$2"))}function w(a,b){return"content"==a||a.indexOf("font-feature-settings")>-1?b:ia.test(b)?b.substring(1,b.length-1):b}function x(a){return!/^url\(['"].+['"]\)$/.test(a)||/^url\(['"].*[\*\s\(\)'"].*['"]\)$/.test(a)||/^url\(['"]data:[^;]+;charset/.test(a)?a:a.replace(/["']/g,"")}function y(a,b,c){var d=c(a,b);return void 0===d?b:d===!1?Y:d}function z(a,b){var c,B,C,D,E,F,H=b.options,I=H.level[T.One],J=S(a,!0);a:for(var K=0,L=J.length;K<L;K++)if(c=J[K],B=c.name,fa.test(B)||(F=c.all[c.position],b.warnings.push("Invalid property name '"+B+"' at "+W(F[1][2][0])+". Ignoring."),c.unused=!0),0===c.value.length&&(F=c.all[c.position],b.warnings.push("Empty property '"+B+"' at "+W(F[1][2][0])+". Ignoring."),c.unused=!0),c.hack&&((c.hack==P.ASTERISK||c.hack==P.UNDERSCORE)&&!H.compatibility.properties.iePrefixHack||c.hack==P.BACKSLASH&&!H.compatibility.properties.ieSuffixHack||c.hack==P.BANG&&!H.compatibility.properties.ieBangHack)&&(c.unused=!0),I.removeNegativePaddings&&0===B.indexOf("padding")&&(d(c.value[0])||d(c.value[1])||d(c.value[2])||d(c.value[3]))&&(c.unused=!0),!H.compatibility.properties.ieFilters&&G(c)&&(c.unused=!0),!c.unused)if(c.block)z(c.value[0][1],b);else if(!ka.test(B)){for(var M=0,N=c.value.length;M<N;M++){if(C=c.value[M][0],D=c.value[M][1],E=f(D),C==U.PROPERTY_BLOCK){c.unused=!0,b.warnings.push("Invalid value token at "+W(D[0][1][2][0])+". Ignoring.");break}if(E&&!b.validator.isValidUrl(D)){c.unused=!0,b.warnings.push("Broken URL '"+D+"' at "+W(c.value[M][2][0])+". Ignoring.");break}if(E?(D=I.normalizeUrls?g(D):D,D=H.compatibility.properties.urlQuotes?D:x(D)):e(D)?D=I.removeQuotes?w(B,D):D:(D=I.removeWhitespace?t(B,D):D,D=q(B,D,H.precision),D=p(B,D,H.compatibility),D=I.replaceTimeUnits?r(B,D):D,D=I.replaceZeroUnits?v(B,D):D,H.compatibility.properties.zeroUnits&&(D=u(B,D),D=s(B,D,H.unitsRegexp)),H.compatibility.properties.colors&&(D=j(B,D,H.compatibility))),D=y(B,D,I.transform),D===Y){c.unused=!0;continue a}c.value[M][1]=D}I.replaceMultipleZeros&&n(c),"background"==B&&I.optimizeBackground?h(c):0===B.indexOf("border")&&B.indexOf("radius")>0&&I.optimizeBorderRadius?i(c):"filter"==B&&I.optimizeFilter&&H.compatibility.properties.ieFilters?k(c):"font"==B&&I.optimizeFont?l(c,H):"font-weight"==B&&I.optimizeFontWeight?m(c,0):"outline"==B&&I.optimizeOutline&&o(c)}R(J),Q(J),J.length!=a.length&&A(a,H)}function A(a,b){var c,d;for(d=0;d<a.length;d++)c=a[d],c[0]==U.COMMENT&&(B(c,b),0===c[1].length&&(a.splice(d,1),d--))}function B(a,b){return a[1][2]==V.EXCLAMATION&&("all"==b.level[T.One].specialComments||b.commentsKept<b.level[T.One].specialComments)?void b.commentsKept++:void(a[1]=[])}function C(a){for(var b=!1,c=0,d=a.length;c<d;c++){var e=a[c];e[0]==U.AT_RULE&&$.test(e[1])&&(b||e[1].indexOf(Z)==-1?(a.splice(c,1),c--,d--):(b=!0,a.splice(c,1),a.unshift([U.AT_RULE,e[1].replace($,Z)])))}}function D(a){var b=["px","em","ex","cm","mm","in","pt","pc","%"],c=["ch","rem","vh","vm","vmax","vmin","vw"];return c.forEach(function(c){a.compatibility.units[c]&&b.push(c)}),new RegExp("(^|\\s|\\(|,)0(?:"+b.join("|")+")(\\W|$)","g")}function E(a){var b,c,d={matcher:null,units:{}},e=[];for(b in a)c=a[b],c!=_&&(d.units[b]={},d.units[b].value=c,d.units[b].multiplier=Math.pow(10,c),e.push(b));return e.length>0&&(d.matcher=new RegExp("(\\d*)(\\.\\d+)("+e.join("|")+")","g")),d}function F(a){return ga.test(a[1])}function G(a){var b;return("filter"==a.name||"-ms-filter"==a.name)&&(b=a.value[0][1],b.indexOf("progid")>-1||0===b.indexOf("alpha")||0===b.indexOf("chroma"))}function H(a,b){var c=b.options,d=c.level[T.One],e=c.compatibility.selectors.ie7Hack,f=c.compatibility.selectors.adjacentSpace,g=c.compatibility.properties.spaceAfterClosingBrace,h=c.format,i=!1,j=!1;c.unitsRegexp=c.unitsRegexp||D(c),c.precision=c.precision||E(d.roundingPrecision),c.commentsKept=c.commentsKept||0;for(var k=0,l=a.length;k<l;k++){var m=a[k];switch(m[0]){case U.AT_RULE:m[1]=F(m)&&j?"":m[1],m[1]=d.tidyAtRules?O(m[1]):m[1],i=!0;break;case U.AT_RULE_BLOCK:z(m[2],b),j=!0;break;case U.NESTED_BLOCK:m[1]=d.tidyBlockScopes?N(m[1],g):m[1],H(m[2],b),j=!0;break;case U.COMMENT:B(m,c);break;case U.RULE:m[1]=d.tidySelectors?M(m[1],!e,f,h,b.warnings):m[1],m[1]=m[1].length>1?L(m[1],d.selectorsSortingMethod):m[1],z(m[2],b),j=!0}(0===m[1].length||m[2]&&0===m[2].length)&&(a.splice(k,1),k--,l--)}return d.cleanupCharsets&&i&&C(a),a}var I=a("./shorten-hex"),J=a("./shorten-hsl"),K=a("./shorten-rgb"),L=a("./sort-selectors"),M=a("./tidy-rules"),N=a("./tidy-block"),O=a("./tidy-at-rule"),P=a("../hack"),Q=a("../remove-unused"),R=a("../restore-from-optimizing"),S=a("../wrap-for-optimizing").all,T=a("../../options/optimization-level").OptimizationLevel,U=a("../../tokenizer/token"),V=a("../../tokenizer/marker"),W=a("../../utils/format-position"),X=a("../../utils/split"),Y="ignore-property",Z="@charset",$=new RegExp("^"+Z,"i"),_=a("../../options/rounding-precision").DEFAULT,aa=["100","200","300","400","500","600","700","800","900"],ba=["normal","bold","bolder","lighter"],ca=["bold","bolder","lighter"],da=/(?:^|\s|\()(-?\d+)px/,ea=/^(\-?[\d\.]+)(m?s)$/,fa=/^(?:\-chrome\-|\-[\w\-]+\w|\w[\w\-]+\w|\-\-\S+)$/,ga=/^@import/i,ha=/^('.*'|".*")$/,ia=/^['"][a-zA-Z][a-zA-Z\d\-_]+['"]$/,ja=/^url\(/i,ka=/^--\S+$/;b.exports=H},{"../../options/optimization-level":63,"../../options/rounding-precision":66,"../../tokenizer/marker":81,"../../tokenizer/token":82,"../../utils/format-position":85,"../../utils/split":94,"../hack":9,"../remove-unused":54,"../restore-from-optimizing":55,"../wrap-for-optimizing":57,"./shorten-hex":12,"./shorten-hsl":13,"./shorten-rgb":14,"./sort-selectors":15,"./tidy-at-rule":16,"./tidy-block":17,"./tidy-rules":18}],12:[function(a,b,c){function d(a,b,c,d){return b+h[c.toLowerCase()]+d}function e(a,b,c){return i[b.toLowerCase()]+c}function f(a){var b=a.indexOf("#")>-1,c=a.replace(l,d);return c!=a&&(c=c.replace(l,d)),b?c.replace(m,e):c}var g={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#0ff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000",blanchedalmond:"#ffebcd",blue:"#00f",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#0ff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#f0f",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#0f0",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#f00",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#fff",whitesmoke:"#f5f5f5",yellow:"#ff0",yellowgreen:"#9acd32"},h={},i={};for(var j in g){var k=g[j];j.length<k.length?i[k]=j:h[j]=k}var l=new RegExp("(^| |,|\\))("+Object.keys(h).join("|")+")( |,|\\)|$)","ig"),m=new RegExp("("+Object.keys(i).join("|")+")([^a-f0-9]|$)","ig");b.exports=f},{}],13:[function(a,b,c){function d(a,b,c){var d,f,g;if(a%=360,a<0&&(a+=360),a=~~a/360,b<0?b=0:b>100&&(b=100),b=~~b/100,c<0?c=0:c>100&&(c=100),c=~~c/100,0===b)d=f=g=c;else{var h=c<.5?c*(1+b):c+b-c*b,i=2*c-h;d=e(i,h,a+1/3),f=e(i,h,a),g=e(i,h,a-1/3)}return[~~(255*d),~~(255*f),~~(255*g)]}function e(a,b,c){return c<0&&(c+=1),c>1&&(c-=1),c<1/6?a+6*(b-a)*c:c<.5?b:c<2/3?a+(b-a)*(2/3-c)*6:a}function f(a,b,c){var e=d(a,b,c),f=e[0].toString(16),g=e[1].toString(16),h=e[2].toString(16);return"#"+((1==f.length?"0":"")+f)+((1==g.length?"0":"")+g)+((1==h.length?"0":"")+h)}b.exports=f},{}],14:[function(a,b,c){function d(a,b,c){var d=Math.max(0,Math.min(parseInt(a),255)),e=Math.max(0,Math.min(parseInt(b),255)),f=Math.max(0,Math.min(parseInt(c),255));return"#"+("00000"+(d<<16|e<<8|f).toString(16)).slice(-6)}b.exports=d},{}],15:[function(a,b,c){function d(a,b){return g(a[1],b[1])}function e(a,b){return a[1]>b[1]?1:-1}function f(a,b){var c;switch(b){case"natural":c=d;break;case"standard":c=e}return a.sort(c)}var g=a("../../utils/natural-compare");b.exports=f},{"../../utils/natural-compare":92}],16:[function(a,b,c){function d(a){return a.replace(/\s+/g," ").replace(/url\(\s+/g,"url(").replace(/\s+\)/g,")").trim()}b.exports=d},{}],17:[function(a,b,c){function d(a,b){var c;for(c=a.length-1;c>=0;c--)a[c][1]=a[c][1].replace(/\n|\r\n/g," ").replace(/\s+/g," ").replace(/(,|:|\() /g,"$1").replace(/ \)/g,")").replace(/'([a-zA-Z][a-zA-Z\d\-_]+)'/,"$1").replace(/"([a-zA-Z][a-zA-Z\d\-_]+)"/,"$1").replace(b?null:/\) /g,")");return a}b.exports=d},{}],18:[function(a,b,c){function d(a){var b,c,d,e,f=!1,g=!1;for(d=0,e=a.length;d<e;d++){if(c=a[d],b);else if(c==i.SINGLE_QUOTE||c==i.DOUBLE_QUOTE)g=!g;else{if(!(g||c!=i.CLOSE_CURLY_BRACKET&&c!=i.EXCLAMATION&&c!=p&&c!=i.SEMICOLON)){f=!0;break}if(!g&&0===d&&l.test(c)){f=!0;break}}b=c==i.BACK_SLASH}return f}function e(a,b){var c,d,e,f,g,j,k,n,o,p,q,r,s,t=[],u=0,v=!1,w=!1,x=b&&b.spaces[h.AroundSelectorRelation];for(r=0,s=a.length;r<s;r++){if(c=a[r],d=c==i.NEW_LINE_NIX,e=c==i.NEW_LINE_NIX&&a[r-1]==i.NEW_LINE_WIN,j=k||n,p=!f&&0===u&&l.test(c),q=m.test(c),g&&j&&e)t.pop(),t.pop();else if(f&&j&&d)t.pop();else if(f)t.push(c);else if(c!=i.OPEN_SQUARE_BRACKET||j)if(c!=i.CLOSE_SQUARE_BRACKET||j)if(c!=i.OPEN_ROUND_BRACKET||j)if(c!=i.CLOSE_ROUND_BRACKET||j)if(c!=i.SINGLE_QUOTE||j)if(c!=i.DOUBLE_QUOTE||j)if(c==i.SINGLE_QUOTE&&j)t.push(c),k=!1;else if(c==i.DOUBLE_QUOTE&&j)t.push(c),n=!1;else{if(q&&v&&!x)continue;!q&&v&&x?(t.push(i.SPACE),t.push(c)):q&&(o||u>0)&&!j||q&&w&&!j||(e||d)&&(o||u>0)&&j||(p&&w&&!x?(t.pop(),t.push(c)):p&&!w&&x?(t.push(i.SPACE),t.push(c)):q?t.push(i.SPACE):t.push(c))}else t.push(c),n=!0;else t.push(c),k=!0;else t.push(c),u--;else t.push(c),u++;else t.push(c),o=!1;else t.push(c),o=!0;g=f,f=c==i.BACK_SLASH,v=p,w=q}return t.join("")}function f(a){return a.replace(/='([a-zA-Z][a-zA-Z\d\-_]+)'/g,"=$1").replace(/="([a-zA-Z][a-zA-Z\d\-_]+)"/g,"=$1")}function g(a,b,c,g,h){function i(a,b){return h.push("HTML comment '"+b+"' at "+j(a[2][0])+". Removing."),""}for(var l=[],m=[],p=0,q=a.length;p<q;p++){var r=a[p],s=r[1];s=s.replace(k,i.bind(null,r)),d(s)?h.push("Invalid selector '"+r[1]+"' at "+j(r[2][0])+". Ignoring."):(s=e(s,g),s=f(s),c&&s.indexOf("nav")>0&&(s=s.replace(/\+nav(\S|$)/,"+ nav$1")),b&&s.indexOf(n)>-1||b&&s.indexOf(o)>-1||(s.indexOf("*")>-1&&(s=s.replace(/\*([:#\.\[])/g,"$1").replace(/^(\:first\-child)?\+html/,"*$1+html")),m.indexOf(s)>-1||(r[1]=s,m.push(s),l.push(r))))}return 1==l.length&&0===l[0][1].length&&(h.push("Empty selector '"+l[0][1]+"' at "+j(l[0][2][0])+". Ignoring."),l=[]),l}var h=a("../../options/format").Spaces,i=a("../../tokenizer/marker"),j=a("../../utils/format-position"),k=/^(?:(?:<!--|-->)\s*)+/,l=/[>\+~]/,m=/\s/,n="*+html ",o="*:first-child+html ",p="<";b.exports=g},{"../../options/format":59,"../../tokenizer/marker":81,"../../utils/format-position":85}],19:[function(a,b,c){function d(a){return function(b){return"invert"==b[1]||a.isValidColor(b[1])||a.isValidVendorPrefixedValue(b[1])}}function e(a){return function(b){return"inherit"!=b[1]&&a.isValidStyle(b[1])&&!a.isValidColorValue(b[1])}}function f(a,b,c){var d=c[a];return o(d.doubleValues&&2==d.defaultValue.length?[p.PROPERTY,[p.PROPERTY_NAME,a],[p.PROPERTY_VALUE,d.defaultValue[0]],[p.PROPERTY_VALUE,d.defaultValue[1]]]:d.doubleValues&&1==d.defaultValue.length?[p.PROPERTY,[p.PROPERTY_NAME,a],[p.PROPERTY_VALUE,d.defaultValue[0]]]:[p.PROPERTY,[p.PROPERTY_NAME,a],[p.PROPERTY_VALUE,d.defaultValue]])}function g(a){return function(b){return"inherit"!=b[1]&&a.isValidWidth(b[1])&&!a.isValidStyle(b[1])&&!a.isValidColorValue(b[1])}}function h(a,b,c){var d=f("background-image",a,b),e=f("background-position",a,b),g=f("background-size",a,b),h=f("background-repeat",a,b),i=f("background-attachment",a,b),j=f("background-origin",a,b),k=f("background-clip",a,b),l=f("background-color",a,b),m=[d,e,g,h,i,j,k,l],o=a.value,p=!1,r=!1,s=!1,t=!1,u=!1;if(1==a.value.length&&"inherit"==a.value[0][1])return l.value=d.value=h.value=e.value=g.value=j.value=k.value=a.value,m;if(1==a.value.length&&"0 0"==a.value[0][1])return m;for(var v=o.length-1;v>=0;v--){var w=o[v];if(c.isValidBackgroundAttachment(w[1]))i.value=[w],u=!0;else if(c.isValidBackgroundClip(w[1])||c.isValidBackgroundOrigin(w[1]))r?(j.value=[w],s=!0):(k.value=[w],r=!0),u=!0;else if(c.isValidBackgroundRepeat(w[1]))t?h.value.unshift(w):(h.value=[w],t=!0),u=!0;else if(c.isValidBackgroundPositionPart(w[1])||c.isValidBackgroundSizePart(w[1])){if(v>0){var x=o[v-1];"/"==x[1]?g.value=[w]:v>1&&"/"==o[v-2][1]?(g.value=[x,w],v-=2):(p||(e.value=[]),e.value.unshift(w),p=!0)}else p||(e.value=[]),e.value.unshift(w),p=!0;u=!0}else l.value[0][1]!=b[l.name].defaultValue&&"none"!=l.value[0][1]||!c.isValidColor(w[1])&&!c.isValidVendorPrefixedValue(w[1])?(c.isValidUrl(w[1])||c.isValidFunction(w[1]))&&(d.value=[w],u=!0):(l.value=[w],u=!0)}if(r&&!s&&(j.value=k.value.slice(0)),!u)throw new n("Invalid background value at "+q(o[0][2][0])+". Ignoring.");return m}function i(a,b){for(var c=a.value,d=-1,e=0,g=c.length;e<g;e++)if("/"==c[e][1]){d=e;break}if(0===d||d===c.length-1)throw new n("Invalid border-radius value at "+q(c[0][2][0])+". Ignoring.");var h=f(a.name,a,b);h.value=d>-1?c.slice(0,d):c.slice(0),h.components=j(h,b);var i=f(a.name,a,b);i.value=d>-1?c.slice(d+1):c.slice(0),i.components=j(i,b);for(var k=0;k<4;k++)h.components[k].multiplex=!0,h.components[k].value=h.components[k].value.concat(i.components[k].value);return h.components}function j(a,b){var c=b[a.name].components,d=[],e=a.value;if(e.length<1)return[];e.length<2&&(e[1]=e[0].slice(0)),e.length<3&&(e[2]=e[0].slice(0)),e.length<4&&(e[3]=e[1].slice(0));for(var f=c.length-1;f>=0;f--){var g=o([p.PROPERTY,[p.PROPERTY_NAME,c[f]]]);g.value=[e[f]],d.unshift(g)}return d}function k(a){return function(b,c,d){var e,g,h,i,j=[],k=b.value;for(e=0,h=k.length;e<h;e++)","==k[e][1]&&j.push(e);if(0===j.length)return a(b,c,d);var l=[];for(e=0,h=j.length;e<=h;e++){var m=0===e?0:j[e-1]+1,n=e<h?j[e]:k.length,o=f(b.name,b,c);o.value=k.slice(m,n),l.push(a(o,c,d))}var q=l[0];for(e=0,h=q.length;e<h;e++)for(q[e].multiplex=!0,g=1,i=l.length;g<i;g++)q[e].value.push([p.PROPERTY_VALUE,r]),Array.prototype.push.apply(q[e].value,l[g][e].value);return q}}function l(a,b,c){var d=f("list-style-type",a,b),e=f("list-style-position",a,b),g=f("list-style-image",a,b),h=[d,e,g];if(1==a.value.length&&"inherit"==a.value[0][1])return d.value=e.value=g.value=[a.value[0]],h;var i=a.value.slice(0),j=i.length,k=0;for(k=0,j=i.length;k<j;k++)if(c.isValidUrl(i[k][1])||"0"==i[k][1]){g.value=[i[k]],i.splice(k,1);break}for(k=0,j=i.length;k<j;k++)if(c.isValidListStyleType(i[k][1])){d.value=[i[k]],i.splice(k,1);break}return i.length>0&&c.isValidListStylePosition(i[0][1])&&(e.value=[i[0]]),h}function m(a,b,c){for(var h,i,j,k=b[a.name],l=[f(k.components[0],a,b),f(k.components[1],a,b),f(k.components[2],a,b)],m=0;m<3;m++){var n=l[m];n.name.indexOf("color")>0?h=n:n.name.indexOf("style")>0?i=n:j=n}if(1==a.value.length&&"inherit"==a.value[0][1]||3==a.value.length&&"inherit"==a.value[0][1]&&"inherit"==a.value[1][1]&&"inherit"==a.value[2][1])return h.value=i.value=j.value=[a.value[0]],l;var o,p,q=a.value.slice(0);return q.length>0&&(p=q.filter(g(c)),o=p.length>1&&("none"==p[0][1]||"auto"==p[0][1])?p[1]:p[0],o&&(j.value=[o],q.splice(q.indexOf(o),1))),q.length>0&&(o=q.filter(e(c))[0],o&&(i.value=[o],q.splice(q.indexOf(o),1))),q.length>0&&(o=q.filter(d(c))[0],o&&(h.value=[o],q.splice(q.indexOf(o),1))),l}var n=a("./invalid-property-error"),o=a("../wrap-for-optimizing").single,p=a("../../tokenizer/token"),q=a("../../utils/format-position"),r=",";b.exports={background:h,border:m,borderRadius:i,fourValues:j,listStyle:l,multiplex:k,outline:m}},{"../../tokenizer/token":82,"../../utils/format-position":85,"../wrap-for-optimizing":57,"./invalid-property-error":24}],20:[function(a,b,c){function d(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidKeywordValue("background-position",c,!0))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||(!!a.isValidKeywordValue("background-position",c,!0)||m(a,b,c)))}function e(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidKeywordValue("background-size",c,!0))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||(!!a.isValidKeywordValue("background-size",c,!0)||m(a,b,c)))}function f(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidColor(c))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||!(!a.colorOpacity&&(a.isValidRgbaColor(b)||a.isValidHslaColor(b)))&&(!(!a.colorOpacity&&(a.isValidRgbaColor(c)||a.isValidHslaColor(c)))&&(!(!a.isValidColor(b)||!a.isValidColor(c))||k(a,b,c))))}function g(a){return function(b,c,d,e){return a[e](b,c,d)}}function h(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidImage(c))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||(!!a.isValidImage(c)||!a.isValidImage(b)&&k(a,b,c)))}function i(a){return function(b,c,d){return!(!p(b,c,d,0,!0)&&!b.isValidKeywordValue(a,d))&&(!(!b.isValidVariable(c)||!b.isValidVariable(d))||b.isValidKeywordValue(a,d,!1))}}function j(a){return function(b,c,d){return!(!p(b,c,d,0,!0)&&!b.isValidKeywordValue(a,d,!0))&&(!(!b.isValidVariable(c)||!b.isValidVariable(d))||b.isValidKeywordValue(a,d,!0))}}function k(a,b,c){return!!a.areSameFunction(b,c)||b===c}function l(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidTextShadow(c))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||a.isValidTextShadow(c))}function m(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidUnitWithoutFunction(c))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||!(a.isValidUnitWithoutFunction(b)&&!a.isValidUnitWithoutFunction(c))&&(!!a.isValidUnitWithoutFunction(c)||!a.isValidUnitWithoutFunction(b)&&(!(!a.isValidFunctionWithoutVendorPrefix(b)||!a.isValidFunctionWithoutVendorPrefix(c))||k(a,b,c))))}function n(a){var b=j(a);return function(a,c,d){return m(a,c,d)||b(a,c,d)}}function o(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidZIndex(c))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||a.isValidZIndex(c))}var p=a("./properties/understandable");b.exports={generic:{color:f,components:g,image:h,unit:m},property:{backgroundAttachment:i("background-attachment"),backgroundClip:j("background-clip"),backgroundOrigin:i("background-origin"),backgroundPosition:d,backgroundRepeat:i("background-repeat"),backgroundSize:e,bottom:n("bottom"),borderCollapse:i("border-collapse"),borderStyle:j("*-style"),clear:j("clear"),cursor:j("cursor"),display:j("display"),float:j("float"),fontStyle:j("font-style"),left:n("left"),fontWeight:j("font-weight"),listStyleType:j("list-style-type"),listStylePosition:j("list-style-position"),outlineStyle:j("*-style"),overflow:j("overflow"),position:j("position"),right:n("right"),textAlign:j("text-align"),textDecoration:j("text-decoration"),textOverflow:j("text-overflow"),textShadow:l,top:n("top"),transform:k,verticalAlign:n("vertical-align"),visibility:j("visibility"),whiteSpace:j("white-space"),zIndex:o}}},{"./properties/understandable":40}],21:[function(a,b,c){function d(a){for(var b=e(a),c=a.components.length-1;c>=0;c--){var d=e(a.components[c]);d.value=a.components[c].value.slice(0),b.components.unshift(d)}return b.dirty=!0,b.value=a.value.slice(0),b}function e(a){var b=f([g.PROPERTY,[g.PROPERTY_NAME,a.name]]);return b.important=a.important,b.hack=a.hack,b.unused=!1,b}var f=a("../wrap-for-optimizing").single,g=a("../../tokenizer/token");b.exports={deep:d,shallow:e}},{"../../tokenizer/token":82,"../wrap-for-optimizing":57}],22:[function(a,b,c){function d(a,b){var c=h(i[a],{});return"componentOf"in c&&(c.componentOf=c.componentOf.map(function(a){return b+a})),"components"in c&&(c.components=c.components.map(function(a){return b+a})),c}var e=a("./break-up"),f=a("./can-override"),g=a("./restore"),h=a("../../utils/override"),i={background:{canOverride:f.generic.components([f.generic.image,f.property.backgroundPosition,f.property.backgroundSize,f.property.backgroundRepeat,f.property.backgroundAttachment,f.property.backgroundOrigin,f.property.backgroundClip,f.generic.color]),components:["background-image","background-position","background-size","background-repeat","background-attachment","background-origin","background-clip","background-color"],breakUp:e.multiplex(e.background),defaultValue:"0 0",restore:g.multiplex(g.background),shortestValue:"0",shorthand:!0},"background-attachment":{canOverride:f.property.backgroundAttachment,componentOf:["background"],defaultValue:"scroll"},"background-clip":{canOverride:f.property.backgroundClip,componentOf:["background"],defaultValue:"border-box",shortestValue:"border-box"},"background-color":{canOverride:f.generic.color,componentOf:["background"],defaultValue:"transparent",multiplexLastOnly:!0,nonMergeableValue:"none",shortestValue:"red"},"background-image":{canOverride:f.generic.image,componentOf:["background"],defaultValue:"none"},"background-origin":{canOverride:f.property.backgroundOrigin,componentOf:["background"],defaultValue:"padding-box",shortestValue:"border-box"},"background-position":{canOverride:f.property.backgroundPosition,componentOf:["background"],defaultValue:["0","0"],doubleValues:!0,shortestValue:"0"},"background-repeat":{canOverride:f.property.backgroundRepeat,componentOf:["background"],defaultValue:["repeat"],doubleValues:!0},"background-size":{canOverride:f.property.backgroundSize,componentOf:["background"],defaultValue:["auto"],doubleValues:!0,shortestValue:"0 0"},bottom:{canOverride:f.property.bottom,defaultValue:"auto"},border:{breakUp:e.border,canOverride:f.generic.components([f.generic.unit,f.property.borderStyle,f.generic.color]),components:["border-width","border-style","border-color"],defaultValue:"none",overridesShorthands:["border-bottom","border-left","border-right","border-top"],restore:g.withoutDefaults,shorthand:!0,shorthandComponents:!0},"border-bottom":{breakUp:e.border,canOverride:f.generic.components([f.generic.unit,f.property.borderStyle,f.generic.color]),components:["border-bottom-width","border-bottom-style","border-bottom-color"],defaultValue:"none",restore:g.withoutDefaults,shorthand:!0},"border-bottom-color":{canOverride:f.generic.color,componentOf:["border-bottom","border-color"],defaultValue:"none"},"border-bottom-left-radius":{canOverride:f.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-bottom-right-radius":{canOverride:f.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-bottom-style":{canOverride:f.property.borderStyle,componentOf:["border-bottom","border-style"],defaultValue:"none"},"border-bottom-width":{canOverride:f.generic.unit,componentOf:["border-bottom","border-width"],defaultValue:"medium",shortestValue:"0"},"border-collapse":{canOverride:f.property.borderCollapse,defaultValue:"separate"},"border-color":{breakUp:e.fourValues,canOverride:f.generic.components([f.generic.color,f.generic.color,f.generic.color,f.generic.color]),componentOf:["border"],components:["border-top-color","border-right-color","border-bottom-color","border-left-color"],defaultValue:"none",restore:g.fourValues,shortestValue:"red",shorthand:!0},"border-left":{breakUp:e.border,canOverride:f.generic.components([f.generic.unit,f.property.borderStyle,f.generic.color]),components:["border-left-width","border-left-style","border-left-color"],defaultValue:"none",restore:g.withoutDefaults,shorthand:!0},"border-left-color":{canOverride:f.generic.color,componentOf:["border-color","border-left"],defaultValue:"none"},"border-left-style":{canOverride:f.property.borderStyle,componentOf:["border-left","border-style"],defaultValue:"none"},"border-left-width":{canOverride:f.generic.unit,componentOf:["border-left","border-width"],defaultValue:"medium",shortestValue:"0"},"border-radius":{breakUp:e.borderRadius,canOverride:f.generic.components([f.generic.unit,f.generic.unit,f.generic.unit,f.generic.unit]),components:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],defaultValue:"0",restore:g.borderRadius,shorthand:!0,vendorPrefixes:["-moz-","-o-"]},"border-right":{breakUp:e.border,canOverride:f.generic.components([f.generic.unit,f.property.borderStyle,f.generic.color]),components:["border-right-width","border-right-style","border-right-color"],defaultValue:"none",restore:g.withoutDefaults,shorthand:!0},"border-right-color":{canOverride:f.generic.color,componentOf:["border-color","border-right"],defaultValue:"none"},"border-right-style":{canOverride:f.property.borderStyle,componentOf:["border-right","border-style"],defaultValue:"none"},"border-right-width":{canOverride:f.generic.unit,componentOf:["border-right","border-width"],defaultValue:"medium",shortestValue:"0"},"border-style":{breakUp:e.fourValues,canOverride:f.generic.components([f.property.borderStyle,f.property.borderStyle,f.property.borderStyle,f.property.borderStyle]),componentOf:["border"],components:["border-top-style","border-right-style","border-bottom-style","border-left-style"],defaultValue:"none",restore:g.fourValues,shorthand:!0},"border-top":{breakUp:e.border,canOverride:f.generic.components([f.generic.unit,f.property.borderStyle,f.generic.color]),components:["border-top-width","border-top-style","border-top-color"],defaultValue:"none",restore:g.withoutDefaults,shorthand:!0},"border-top-color":{canOverride:f.generic.color,componentOf:["border-color","border-top"],defaultValue:"none"},"border-top-left-radius":{canOverride:f.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-top-right-radius":{canOverride:f.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-top-style":{canOverride:f.property.borderStyle,componentOf:["border-style","border-top"],defaultValue:"none"},"border-top-width":{canOverride:f.generic.unit,componentOf:["border-top","border-width"],defaultValue:"medium",shortestValue:"0"},"border-width":{breakUp:e.fourValues,canOverride:f.generic.components([f.generic.unit,f.generic.unit,f.generic.unit,f.generic.unit]),components:["border-top-width","border-right-width","border-bottom-width","border-left-width"],defaultValue:"medium",restore:g.fourValues,shortestValue:"0",shorthand:!0},clear:{canOverride:f.property.clear,defaultValue:"none"},color:{canOverride:f.generic.color,defaultValue:"transparent",shortestValue:"red"},cursor:{canOverride:f.property.cursor,defaultValue:"auto"},display:{canOverride:f.property.display},float:{canOverride:f.property.float,defaultValue:"none"},"font-size":{canOverride:f.generic.unit,defaultValue:"medium",shortestValue:"0"},"font-style":{canOverride:f.property.fontStyle,defaultValue:"normal"},"font-weight":{canOverride:f.property.fontWeight,defaultValue:"400",shortestValue:"400"},height:{canOverride:f.generic.unit,defaultValue:"auto",shortestValue:"0"},left:{canOverride:f.property.left,defaultValue:"auto"},"line-height":{canOverride:f.generic.unit,defaultValue:"normal",shortestValue:"0"},"list-style":{canOverride:f.generic.components([f.property.listStyleType,f.property.listStylePosition,f.property.listStyleImage]),components:["list-style-type","list-style-position","list-style-image"],breakUp:e.listStyle,restore:g.withoutDefaults,defaultValue:"outside",shortestValue:"none",shorthand:!0},"list-style-image":{canOverride:f.generic.image,componentOf:["list-style"],defaultValue:"none"},"list-style-position":{canOverride:f.property.listStylePosition,componentOf:["list-style"],defaultValue:"outside",shortestValue:"inside"},"list-style-type":{canOverride:f.property.listStyleType,componentOf:["list-style"],defaultValue:"decimal|disc",shortestValue:"none"},margin:{breakUp:e.fourValues,canOverride:f.generic.components([f.generic.unit,f.generic.unit,f.generic.unit,f.generic.unit]),components:["margin-top","margin-right","margin-bottom","margin-left"],defaultValue:"0",restore:g.fourValues,shorthand:!0},"margin-bottom":{canOverride:f.generic.unit,componentOf:["margin"],defaultValue:"0"},"margin-left":{canOverride:f.generic.unit,componentOf:["margin"],defaultValue:"0"},"margin-right":{canOverride:f.generic.unit,componentOf:["margin"],defaultValue:"0"},"margin-top":{canOverride:f.generic.unit,componentOf:["margin"],defaultValue:"0"},outline:{canOverride:f.generic.components([f.generic.color,f.property.outlineStyle,f.generic.unit]),components:["outline-color","outline-style","outline-width"],breakUp:e.outline,restore:g.withoutDefaults,defaultValue:"0",shorthand:!0},"outline-color":{canOverride:f.generic.color,componentOf:["outline"],defaultValue:"invert",shortestValue:"red"},"outline-style":{canOverride:f.property.outlineStyle,componentOf:["outline"],defaultValue:"none"},"outline-width":{canOverride:f.generic.unit,componentOf:["outline"],defaultValue:"medium",shortestValue:"0"},overflow:{canOverride:f.property.overflow,defaultValue:"visible"},"overflow-x":{canOverride:f.property.overflow,defaultValue:"visible"},"overflow-y":{canOverride:f.property.overflow,defaultValue:"visible"},padding:{breakUp:e.fourValues,canOverride:f.generic.components([f.generic.unit,f.generic.unit,f.generic.unit,f.generic.unit]),
-components:["padding-top","padding-right","padding-bottom","padding-left"],defaultValue:"0",restore:g.fourValues,shorthand:!0},"padding-bottom":{canOverride:f.generic.unit,componentOf:["padding"],defaultValue:"0"},"padding-left":{canOverride:f.generic.unit,componentOf:["padding"],defaultValue:"0"},"padding-right":{canOverride:f.generic.unit,componentOf:["padding"],defaultValue:"0"},"padding-top":{canOverride:f.generic.unit,componentOf:["padding"],defaultValue:"0"},position:{canOverride:f.property.position,defaultValue:"static"},right:{canOverride:f.property.right,defaultValue:"auto"},"text-align":{canOverride:f.property.textAlign,defaultValue:"left|right"},"text-decoration":{canOverride:f.property.textDecoration,defaultValue:"none"},"text-overflow":{canOverride:f.property.textOverflow,defaultValue:"none"},"text-shadow":{canOverride:f.property.textShadow,defaultValue:"none"},top:{canOverride:f.property.top,defaultValue:"auto"},transform:{canOverride:f.property.transform,vendorPrefixes:["-moz-","-ms-","-webkit-"]},"vertical-align":{canOverride:f.property.verticalAlign,defaultValue:"baseline"},visibility:{canOverride:f.property.visibility,defaultValue:"visible"},"white-space":{canOverride:f.property.whiteSpace,defaultValue:"normal"},width:{canOverride:f.generic.unit,defaultValue:"auto",shortestValue:"0"},"z-index":{canOverride:f.property.zIndex,defaultValue:"auto"}},j={};for(var k in i){var l=i[k];if("vendorPrefixes"in l){for(var m=0;m<l.vendorPrefixes.length;m++){var n=l.vendorPrefixes[m],o=d(k,n);delete o.vendorPrefixes,j[n+k]=o}delete l.vendorPrefixes}}b.exports=h(i,j)},{"../../utils/override":93,"./break-up":19,"./can-override":20,"./restore":48}],23:[function(a,b,c){function d(a){var b,c,i,j,k,l,m=[];if(a[0]==f.RULE)for(b=!/[\.\+>~]/.test(g(a[1])),k=0,l=a[2].length;k<l;k++)c=a[2][k],c[0]==f.PROPERTY&&(i=c[1][1],0!==i.length&&0!==i.indexOf("--")&&(j=h(c,k),m.push([i,j,e(i),a[2][k],i+":"+j,a[1],b])));else if(a[0]==f.NESTED_BLOCK)for(k=0,l=a[2].length;k<l;k++)m=m.concat(d(a[2][k]));return m}function e(a){return"list-style"==a?a:a.indexOf("-radius")>0?"border-radius":"border-collapse"==a||"border-spacing"==a||"border-image"==a?a:0===a.indexOf("border-")&&/^border\-\w+\-\w+$/.test(a)?a.match(/border\-\w+/)[0]:0===a.indexOf("border-")&&/^border\-\w+$/.test(a)?"border":0===a.indexOf("text-")?a:"-chrome-"==a?a:a.replace(/^\-\w+\-/,"").match(/([a-zA-Z]+)/)[0].toLowerCase()}var f=a("../../tokenizer/token"),g=a("../../writer/one-time").rules,h=a("../../writer/one-time").value;b.exports=d},{"../../tokenizer/token":82,"../../writer/one-time":96}],24:[function(a,b,c){function d(a){this.name="InvalidPropertyError",this.message=a,this.stack=(new Error).stack}d.prototype=Object.create(Error.prototype),d.prototype.constructor=d,b.exports=d},{}],25:[function(a,b,c){function d(a,b,c){var d,h,i,j=m(a,l.COMMA);for(h=0,i=j.length;h<i;h++)if(d=j[h],0===d.length||e(d)||d.indexOf(l.COLON)>-1&&!g(d,f(d),b,c))return!1;return!0}function e(a){return n.test(a)}function f(a){var b,c,d,e,f,g,h=[],i=[],j=s.ROOT,k=0,m=!1,n=!1;for(f=0,g=a.length;f<g;f++)b=a[f],e=!d&&r.test(b),c=j==s.DOUBLE_QUOTE||j==s.SINGLE_QUOTE,d?i.push(b):b==l.DOUBLE_QUOTE&&j==s.ROOT?(i.push(b),j=s.DOUBLE_QUOTE):b==l.DOUBLE_QUOTE&&j==s.DOUBLE_QUOTE?(i.push(b),j=s.ROOT):b==l.SINGLE_QUOTE&&j==s.ROOT?(i.push(b),j=s.SINGLE_QUOTE):b==l.SINGLE_QUOTE&&j==s.SINGLE_QUOTE?(i.push(b),j=s.ROOT):c?i.push(b):b==l.OPEN_ROUND_BRACKET?(i.push(b),k++):b==l.CLOSE_ROUND_BRACKET&&1==k&&m?(i.push(b),h.push(i.join("")),k--,i=[],m=!1):b==l.CLOSE_ROUND_BRACKET?(i.push(b),k--):b==l.COLON&&0===k&&m&&!n?(h.push(i.join("")),i=[],i.push(b)):b!=l.COLON||0!==k||n?b==l.SPACE&&0===k&&m?(h.push(i.join("")),i=[],m=!1):e&&0===k&&m?(h.push(i.join("")),i=[],m=!1):i.push(b):(i=[],i.push(b),m=!0),d=b==l.BACK_SLASH,n=b==l.COLON;return i.length>0&&m&&h.push(i.join("")),h}function g(a,b,c,d){return h(b,c,d)&&i(b)&&(b.length<2||!j(a,b))&&(b.length<2||!k(b))}function h(a,b,c){var d,e,f,g;for(f=0,g=a.length;f<g;f++)if(d=a[f],e=d.indexOf(l.OPEN_ROUND_BRACKET)>-1?d.substring(0,d.indexOf(l.OPEN_ROUND_BRACKET)):d,b.indexOf(e)===-1&&c.indexOf(e)===-1)return!1;return!0}function i(a){var b,c,d,e,f,g;for(f=0,g=a.length;f<g;f++){if(b=a[f],d=b.indexOf(l.OPEN_ROUND_BRACKET),e=d>-1,c=e?b.substring(0,d):b,e&&q.indexOf(c)==-1)return!1;if(!e&&q.indexOf(c)>-1)return!1}return!0}function j(a,b){var c,d,e,f,g,h,i,j,k,m=0;for(j=0,k=b.length;j<k&&(c=b[j],e=b[j+1],e);j++)if(d=a.indexOf(c,m),f=a.indexOf(c,d+1),m=f,i=d+c.length==f,i&&(g=c.indexOf(l.OPEN_ROUND_BRACKET)>-1?c.substring(0,c.indexOf(l.OPEN_ROUND_BRACKET)):c,h=e.indexOf(l.OPEN_ROUND_BRACKET)>-1?e.substring(0,e.indexOf(l.OPEN_ROUND_BRACKET)):e,g!=p||h!=p))return!0;return!1}function k(a){var b,c,d,e=o.test(a[0]);for(c=0,d=a.length;c<d;c++)if(b=a[c],o.test(b)!=e)return!0;return!1}var l=a("../../tokenizer/marker"),m=a("../../utils/split"),n=/\/deep\//,o=/^::/,p=":not",q=[":dir",":lang",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type"],r=/[>\+~]/,s={DOUBLE_QUOTE:"double-quote",SINGLE_QUOTE:"single-quote",ROOT:"root"};b.exports=d},{"../../tokenizer/marker":81,"../../utils/split":94}],26:[function(a,b,c){function d(a,b){for(var c=[null,[],[]],d=b.options,m=d.compatibility.selectors.adjacentSpace,n=d.level[i.One].selectorsSortingMethod,o=d.compatibility.selectors.mergeablePseudoClasses,p=d.compatibility.selectors.mergeablePseudoElements,q=0,r=a.length;q<r;q++){var s=a[q];s[0]==l.RULE?c[0]==l.RULE&&k(s[1])==k(c[1])?(Array.prototype.push.apply(c[2],s[2]),f(c[2],!0,!0,b),s[2]=[]):c[0]==l.RULE&&j(s[2])==j(c[2])&&e(k(s[1]),o,p)&&e(k(c[1]),o,p)?(c[1]=h(c[1].concat(s[1]),!1,m,!1,b.warnings),c[1]=c.length>1?g(c[1],n):c[1],s[2]=[]):c=s:c=[null,[],[]]}}var e=a("./is-mergeable"),f=a("./properties/optimize"),g=a("../level-1/sort-selectors"),h=a("../level-1/tidy-rules"),i=a("../../options/optimization-level").OptimizationLevel,j=a("../../writer/one-time").body,k=a("../../writer/one-time").rules,l=a("../../tokenizer/token");b.exports=d},{"../../options/optimization-level":63,"../../tokenizer/token":82,"../../writer/one-time":96,"../level-1/sort-selectors":15,"../level-1/tidy-rules":18,"./is-mergeable":25,"./properties/optimize":36}],27:[function(a,b,c){function d(a,b){for(var c=b.options.level[k.Two].mergeSemantically,d=b.cache.specificity,g={},i=[],m=a.length-1;m>=0;m--){var n=a[m];if(n[0]==l.NESTED_BLOCK){var o=j(n[1]),p=g[o];p||(p=[],g[o]=p),p.push(m)}}for(var q in g){var r=g[q];a:for(var s=r.length-1;s>0;s--){var t=r[s],u=a[t],v=r[s-1],w=a[v];b:for(var x=1;x>=-1;x-=2){for(var y=1==x,z=y?t+1:v-1,A=y?v:t,B=y?1:-1,C=y?u:w,D=y?w:u,E=h(C);z!=A;){var F=h(a[z]);if(z+=B,!(c&&e(E,F,d)||f(E,F,d)))continue b}D[2]=y?C[2].concat(D[2]):D[2].concat(C[2]),C[2]=[],i.push(D);continue a}}}return i}function e(a,b,c){var d,e,f,h,j,k,l,m;for(j=0,k=a.length;j<k;j++)for(d=a[j],e=d[5],l=0,m=b.length;l<m;l++)if(f=b[l],h=f[5],i(e,h,!0)&&!g(d,f,c))return!1;return!0}var f=a("./reorderable").canReorder,g=a("./reorderable").canReorderSingle,h=a("./extract-properties"),i=a("./rules-overlap"),j=a("../../writer/one-time").rules,k=a("../../options/optimization-level").OptimizationLevel,l=a("../../tokenizer/token");b.exports=d},{"../../options/optimization-level":63,"../../tokenizer/token":82,"../../writer/one-time":96,"./extract-properties":23,"./reorderable":46,"./rules-overlap":50}],28:[function(a,b,c){function d(a){return/\.|\*| :/.test(a)}function e(a){var b=n(a[1]);return b.indexOf("__")>-1||b.indexOf("--")>-1}function f(a){return a.replace(/--[^ ,>\+~:]+/g,"")}function g(a,b){var c=f(n(a[1]));for(var d in b){var e=b[d],g=f(n(e[1]));(g.indexOf(c)>-1||c.indexOf(g)>-1)&&delete b[d]}}function h(a,b){for(var c=b.options,f=c.level[l.Two].mergeSemantically,h=c.compatibility.selectors.adjacentSpace,p=c.level[l.One].selectorsSortingMethod,q=c.compatibility.selectors.mergeablePseudoClasses,r=c.compatibility.selectors.mergeablePseudoElements,s={},t=a.length-1;t>=0;t--){var u=a[t];if(u[0]==o.RULE){u[2].length>0&&!f&&d(n(u[1]))&&(s={}),u[2].length>0&&f&&e(u)&&g(u,s);var v=m(u[2]),w=s[v];w&&i(n(u[1]),q,r)&&i(n(w[1]),q,r)&&(u[2].length>0?(u[1]=k(w[1].concat(u[1]),!1,h,!1,b.warnings),u[1]=u[1].length>1?j(u[1],p):u[1]):u[1]=w[1].concat(u[1]),w[2]=[],s[v]=null),s[m(u[2])]=u}}}var i=a("./is-mergeable"),j=a("../level-1/sort-selectors"),k=a("../level-1/tidy-rules"),l=a("../../options/optimization-level").OptimizationLevel,m=a("../../writer/one-time").body,n=a("../../writer/one-time").rules,o=a("../../tokenizer/token");b.exports=h},{"../../options/optimization-level":63,"../../tokenizer/token":82,"../../writer/one-time":96,"../level-1/sort-selectors":15,"../level-1/tidy-rules":18,"./is-mergeable":25}],29:[function(a,b,c){function d(a,b){var c,d=b.cache.specificity,j={},k=[];for(c=a.length-1;c>=0;c--)if(a[c][0]==i.RULE&&0!==a[c][2].length){var l=h(a[c][1]);j[l]=[c].concat(j[l]||[]),2==j[l].length&&k.push(l)}for(c=k.length-1;c>=0;c--){var m=j[k[c]];a:for(var n=m.length-1;n>0;n--){var o=m[n-1],p=a[o],q=m[n],r=a[q];b:for(var s=1;s>=-1;s-=2){for(var t=1==s,u=t?o+1:q-1,v=t?q:o,w=t?1:-1,x=t?p:r,y=t?r:p,z=f(x);u!=v;){var A=f(a[u]);u+=w;var B=t?e(z,A,d):e(A,z,d);if(!B&&!t)continue a;if(!B&&t)continue b}t?(Array.prototype.push.apply(x[2],y[2]),y[2]=x[2]):Array.prototype.push.apply(y[2],x[2]),g(y[2],!0,!0,b),x[2]=[]}}}}var e=a("./reorderable").canReorder,f=a("./extract-properties"),g=a("./properties/optimize"),h=a("../../writer/one-time").rules,i=a("../../tokenizer/token");b.exports=d},{"../../tokenizer/token":82,"../../writer/one-time":96,"./extract-properties":23,"./properties/optimize":36,"./reorderable":46}],30:[function(a,b,c){function d(a){for(var b=0,c=a.length;b<c;b++){var e=a[b],f=!1;switch(e[0]){case s.RULE:f=0===e[1].length||0===e[2].length;break;case s.NESTED_BLOCK:d(e[2]),f=0===e[2].length;break;case s.AT_RULE_BLOCK:f=0===e[2].length}f&&(a.splice(b,1),b--,c--)}}function e(a,b){for(var c=0,d=a.length;c<d;c++){var e=a[c];if(e[0]==s.NESTED_BLOCK){var f=/@(-moz-|-o-|-webkit-)?keyframes/.test(e[1][0][1]);g(e[2],b,!f)}}}function f(a,b){for(var c=0,d=a.length;c<d;c++){var e=a[c];switch(e[0]){case s.RULE:q(e[2],!0,!0,b);break;case s.NESTED_BLOCK:f(e[2],b)}}}function g(a,b,c){var q,s,t=b.options.level[r.Two];if(e(a,b),f(a,b),t.removeDuplicateRules&&o(a,b),t.mergeAdjacentRules&&h(a,b),t.reduceNonAdjacentRules&&l(a,b),t.mergeNonAdjacentRules&&"body"!=t.mergeNonAdjacentRules&&k(a,b),t.mergeNonAdjacentRules&&"selector"!=t.mergeNonAdjacentRules&&j(a,b),t.restructureRules&&t.mergeAdjacentRules&&c&&(p(a,b),h(a,b)),t.restructureRules&&!t.mergeAdjacentRules&&c&&p(a,b),t.removeDuplicateFontRules&&m(a,b),t.removeDuplicateMediaBlocks&&n(a,b),t.mergeMedia)for(q=i(a,b),s=q.length-1;s>=0;s--)g(q[s][2],b,!1);return d(a),a}var h=a("./merge-adjacent"),i=a("./merge-media-queries"),j=a("./merge-non-adjacent-by-body"),k=a("./merge-non-adjacent-by-selector"),l=a("./reduce-non-adjacent"),m=a("./remove-duplicate-font-at-rules"),n=a("./remove-duplicate-media-queries"),o=a("./remove-duplicates"),p=a("./restructure"),q=a("./properties/optimize"),r=a("../../options/optimization-level").OptimizationLevel,s=a("../../tokenizer/token");b.exports=g},{"../../options/optimization-level":63,"../../tokenizer/token":82,"./merge-adjacent":26,"./merge-media-queries":27,"./merge-non-adjacent-by-body":28,"./merge-non-adjacent-by-selector":29,"./properties/optimize":36,"./reduce-non-adjacent":42,"./remove-duplicate-font-at-rules":43,"./remove-duplicate-media-queries":44,"./remove-duplicates":45,"./restructure":49}],31:[function(a,b,c){function d(a,b,c){var d,f,g,h=b.value.length,i=c.value.length,j=Math.max(h,i),k=Math.min(h,i)-1;for(g=0;g<j;g++)if(d=b.value[g]&&b.value[g][1]||d,f=c.value[g]&&c.value[g][1]||f,d!=e.COMMA&&f!=e.COMMA&&!a(d,f,g,g<=k))return!1;return!0}var e=a("../../../tokenizer/marker");b.exports=d},{"../../../tokenizer/marker":81}],32:[function(a,b,c){function d(a,b){var c=e(b);return f(a,c)||g(a,c)}function e(a){return function(b){return a.name===b.name}}function f(a,b){return a.components.filter(b)[0]}function g(a,b){var c,d,e,g;if(h[a.name].shorthandComponents)for(e=0,g=a.components.length;e<g;e++)if(c=a.components[e],d=f(c,b))return d}var h=a("../compactable");b.exports=d},{"../compactable":22}],33:[function(a,b,c){function d(a){for(var b=a.value.length-1;b>=0;b--)if("inherit"==a.value[b][1])return!0;return!1}b.exports=d},{}],34:[function(a,b,c){function d(a,b,c){return e(a,b)||!c&&!!g[a.name].shorthandComponents&&f(a,b)}function e(a,b){var c=g[a.name];return"components"in c&&c.components.indexOf(b.name)>-1}function f(a,b){return a.components.some(function(a){return e(a,b)})}var g=a("../compactable");b.exports=d},{"../compactable":22}],35:[function(a,b,c){function d(a){var b;for(var c in a){if(void 0!==b&&a[c].important!=b)return!0;b=a[c].important}return!1}function e(a,b){var c,d,e,f,g=[];for(f in a)c=a[f],d=c.all[c.position],e=d[b][d[b].length-1],Array.prototype.push.apply(g,e);return g}function f(a,b,c,d){var f,g,h,p,q=l[c],r=[o.PROPERTY,[o.PROPERTY_NAME,c],[o.PROPERTY_VALUE,q.defaultValue]],s=n(r);s.shorthand=!0,s.dirty=!0,k([s],d,[]);for(var t=0,u=q.components.length;t<u;t++){var v=b[q.components[t]];if(j(v))return;if(h=l[v.name].canOverride,!i(h.bind(null,d),s.components[t],v))return;s.components[t]=m(v),s.important=v.important,p=v.all}for(var w in b)b[w].unused=!0;f=e(b,1),r[1].push(f),g=e(b,2),r[2].push(g),s.position=p.length,s.all=p,s.all.push(r),a.push(s)}function g(a,b,c,e){var g=a[b];for(var h in c)if(void 0===g||h!=g.name){var i=l[h],j=c[h];i.components.length>Object.keys(j).length?delete c[h]:d(j)||f(a,j,h,e)}}function h(a,b){var c,d,e,f,h,i,j,k={};if(!(a.length<3)){for(f=0,h=a.length;f<h;f++)if(e=a[f],!e.unused&&!e.hack&&!e.block&&(c=l[e.name],c&&c.componentOf))if(e.shorthand)g(a,f,k,b);else for(i=0,j=c.componentOf.length;i<j;i++)d=c.componentOf[i],k[d]=k[d]||{},k[d][e.name]=e;g(a,f,k,b)}}var i=a("./every-values-pair"),j=a("./has-inherit"),k=a("./populate-components"),l=a("../compactable"),m=a("../clone").deep,n=a("../../wrap-for-optimizing").single,o=a("../../../tokenizer/token");b.exports=h},{"../../../tokenizer/token":82,"../../wrap-for-optimizing":57,"../clone":21,"../compactable":22,"./every-values-pair":31,"./has-inherit":33,"./populate-components":39}],36:[function(a,b,c){function d(a,b,c,m){var n,o,p,q=i(a,!1);for(g(q,m.validator,m.warnings),o=0,p=q.length;o<p;o++)n=q[o],n.block&&d(n.value[0][1],b,c,m);b&&m.options.level[l.Two].overrideProperties&&f(q,c,m.options.compatibility,m.validator),c&&m.options.level[l.Two].mergeIntoShorthands&&e(q,m.validator),k(q,h),j(q)}var e=a("./merge-into-shorthands"),f=a("./override-properties"),g=a("./populate-components"),h=a("../restore-with-components"),i=a("../../wrap-for-optimizing").all,j=a("../../remove-unused"),k=a("../../restore-from-optimizing"),l=a("../../../options/optimization-level").OptimizationLevel;b.exports=d},{"../../../options/optimization-level":63,"../../remove-unused":54,"../../restore-from-optimizing":55,"../../wrap-for-optimizing":57,"../restore-with-components":47,"./merge-into-shorthands":35,"./override-properties":37,"./populate-components":39}],37:[function(a,b,c){function d(a,b){for(var c=0;c<a.components.length;c++){var d=a.components[c],e=B[d.name],f=e&&e.canOverride||f.sameValue,g=E(d);if(g.value=[[G.PROPERTY_VALUE,e.defaultValue]],!w(f.bind(null,b),g,d))return!0}return!1}function e(a,b){b.unused=!0,j(b,k(a)),a.value=b.value}function f(a,b){b.unused=!0,a.multiplex=!0,a.value=b.value}function g(a,b){b.unused=!0,a.value=b.value}function h(a,b){b.multiplex?f(a,b):a.multiplex?e(a,b):g(a,b)}function i(a,b){b.unused=!0;for(var c=0,d=a.components.length;c<d;c++)h(a.components[c],b.components[c],a.multiplex)}function j(a,b){a.multiplex=!0;for(var c=0,d=a.components.length;c<d;c++){var e=a.components[c];if(!e.multiplex)for(var f=e.value.slice(0),g=1;g<b;g++)e.value.push([G.PROPERTY_VALUE,H.COMMA]),Array.prototype.push.apply(e.value,f)}}function k(a){for(var b=0,c=0,d=a.value.length;c<d;c++)a.value[c][1]==H.COMMA&&b++;return b+1}function l(a){var b=[G.PROPERTY,[G.PROPERTY_NAME,a.name]].concat(a.value);return I([b],0).length}function m(a,b,c){for(var d=0,e=b;e>=0&&(a[e].name!=c||a[e].unused||d++,!(d>1));e--);return d>1}function n(a,b){for(var c=0,d=a.components.length;c<d;c++)if(o(b.isValidFunction,a.components[c]))return!0;return!1}function o(a,b){for(var c=0,d=b.value.length;c<d;c++)if(b.value[c][1]!=H.COMMA&&a(b.value[c][1]))return!0;return!1}function p(a,b){if(!a.multiplex&&!b.multiplex||a.multiplex&&b.multiplex)return!1;var c,d=a.multiplex?a:b,g=a.multiplex?b:a,h=C(d);F([h],D);var i=C(g);F([i],D);var m=l(h)+1+l(i);a.multiplex?(c=x(h,i),e(c,i)):(c=x(i,h),j(i,k(h)),f(c,h)),F([i],D);var n=l(i);return m<=n}function q(a){return a.name in B}function r(a,b){return!a.multiplex&&("background"==a.name||"background-image"==a.name)&&b.multiplex&&("background"==b.name||"background-image"==b.name)&&s(b.value)}function s(a){for(var b=t(a),c=0,d=b.length;c<d;c++)if(1==b[c].length&&"none"==b[c][0][1])return!0;return!1}function t(a){for(var b=[],c=0,d=[],e=a.length;c<e;c++){var f=a[c];f[1]==H.COMMA?(b.push(d),d=[]):d.push(f)}return b.push(d),b}function u(a,b,c,e){var f,g,l,s,t,u,C,D,E,F,G;a:for(E=a.length-1;E>=0;E--)if(g=a[E],q(g)&&!g.block){f=B[g.name].canOverride;b:for(F=E-1;F>=0;F--)if(l=a[F],q(l)&&!l.block&&!l.unused&&!g.unused&&(!l.hack||g.hack||g.important)&&(l.hack||l.important||!g.hack)&&!(l.important==g.important&&l.hack!=g.hack||v(g)||r(l,g)))if(g.shorthand&&y(g,l)){if(!g.important&&l.important)continue;if(!A([l],g.components))continue;if(!o(e.isValidFunction,l)&&n(g,e))continue;s=x(g,l),f=B[l.name].canOverride,w(f.bind(null,e),l,s)&&(l.unused=!0)}else if(g.shorthand&&z(g,l)){if(!g.important&&l.important)continue;if(!A([l],g.components))continue;if(!o(e.isValidFunction,l)&&n(g,e))continue;for(t=l.shorthand?l.components:[l],G=t.length-1;G>=0;G--)if(u=t[G],C=x(g,u),f=B[u.name].canOverride,!w(f.bind(null,e),l,C))continue b;l.unused=!0}else if(b&&l.shorthand&&!g.shorthand&&y(l,g,!0)){if(g.important&&!l.important)continue;if(!g.important&&l.important){g.unused=!0;continue}if(m(a,E-1,l.name))continue;if(n(l,e))continue;if(s=x(l,g),w(f.bind(null,e),s,g)){var H=!c.properties.backgroundClipMerging&&s.name.indexOf("background-clip")>-1||!c.properties.backgroundOriginMerging&&s.name.indexOf("background-origin")>-1||!c.properties.backgroundSizeMerging&&s.name.indexOf("background-size")>-1,I=B[g.name].nonMergeableValue===g.value[0][1];if(H||I)continue;if(!c.properties.merging&&d(l,e))continue;if(s.value[0][1]!=g.value[0][1]&&(v(l)||v(g)))continue;if(p(l,g))continue;!l.multiplex&&g.multiplex&&j(l,k(g)),h(s,g),l.dirty=!0}}else if(b&&l.shorthand&&g.shorthand&&l.name==g.name){if(!l.multiplex&&g.multiplex)continue;if(!g.important&&l.important){g.unused=!0;continue a}if(g.important&&!l.important){l.unused=!0;continue}for(G=l.components.length-1;G>=0;G--){var J=l.components[G],K=g.components[G];if(f=B[J.name].canOverride,!w(f.bind(null,e),J,K))continue a}i(l,g),l.dirty=!0}else if(b&&l.shorthand&&g.shorthand&&y(l,g)){if(!l.important&&g.important)continue;if(s=x(l,g),f=B[g.name].canOverride,!w(f.bind(null,e),s,g))continue;if(l.important&&!g.important){g.unused=!0;continue}var L=B[g.name].restore(g,B);if(L.length>1)continue;s=x(l,g),h(s,g),g.dirty=!0}else if(l.name==g.name){if(D=!0,g.shorthand)for(G=g.components.length-1;G>=0&&D;G--)u=l.components[G],C=g.components[G],f=B[C.name].canOverride,D=D&&w(f.bind(null,e),u,C);else f=B[g.name].canOverride,D=w(f.bind(null,e),l,g);if(l.important&&!g.important&&D){g.unused=!0;continue}if(!l.important&&g.important&&D){l.unused=!0;continue}if(!D)continue;l.unused=!0}}}var v=a("./has-inherit"),w=a("./every-values-pair"),x=a("./find-component-in"),y=a("./is-component-of"),z=a("./overrides-non-component-shorthand"),A=a("./vendor-prefixes").same,B=a("../compactable"),C=a("../clone").deep,C=a("../clone").deep,D=a("../restore-with-components"),E=a("../clone").shallow,F=a("../../restore-from-optimizing"),G=a("../../../tokenizer/token"),H=a("../../../tokenizer/marker"),I=a("../../../writer/one-time").property;b.exports=u},{"../../../tokenizer/marker":81,"../../../tokenizer/token":82,"../../../writer/one-time":96,"../../restore-from-optimizing":55,"../clone":21,"../compactable":22,"../restore-with-components":47,"./every-values-pair":31,"./find-component-in":32,"./has-inherit":33,"./is-component-of":34,"./overrides-non-component-shorthand":38,"./vendor-prefixes":41}],38:[function(a,b,c){function d(a,b){return a.name in e&&"overridesShorthands"in e[a.name]&&e[a.name].overridesShorthands.indexOf(b.name)>-1}var e=a("../compactable");b.exports=d},{"../compactable":22}],39:[function(a,b,c){function d(a,b,c){for(var d,g,h,i=a.length-1;i>=0;i--){var j=a[i],k=e[j.name];if(k&&k.shorthand){j.shorthand=!0,j.dirty=!0;try{if(j.components=k.breakUp(j,e,b),k.shorthandComponents)for(g=0,h=j.components.length;g<h;g++)d=j.components[g],d.components=e[d.name].breakUp(d,e,b)}catch(a){if(!(a instanceof f))throw a;j.components=[],c.push(a.message)}j.components.length>0?j.multiplex=j.components[0].multiplex:j.unused=!0}}}var e=a("../compactable"),f=a("../invalid-property-error");b.exports=d},{"../compactable":22,"../invalid-property-error":24}],40:[function(a,b,c){function d(a,b,c,d,f){return!!e(b,c)&&(!f||a.isValidVariable(b)===a.isValidVariable(c))}var e=a("./vendor-prefixes").same;b.exports=d},{"./vendor-prefixes":41}],41:[function(a,b,c){function d(a){for(var b,c=[];null!==(b=f.exec(a));)c.indexOf(b[0])==-1&&c.push(b[0]);return c}function e(a,b){return d(a).sort().join(",")==d(b).sort().join(",")}var f=/(?:^|\W)(\-\w+\-)/g;b.exports={unique:d,same:e}},{}],42:[function(a,b,c){function d(a,b){for(var c=b.options,d=c.compatibility.selectors.mergeablePseudoClasses,h=c.compatibility.selectors.mergeablePseudoElements,j={},k=[],m=a.length-1;m>=0;m--){var o=a[m];if(o[0]==l.RULE&&0!==o[2].length)for(var p=n(o[1]),q=o[1].length>1&&i(p,d,h),r=e(o[1]),s=q?[p].concat(r):[p],t=0,u=s.length;t<u;t++){var v=s[t];j[v]?k.push(v):j[v]=[],j[v].push({where:m,list:r,isPartial:q&&t>0,isComplex:q&&0===t})}}f(a,k,j,c,b),g(a,j,c,b)}function e(a){for(var b=[],c=0;c<a.length;c++)b.push([a[c][1]]);return b}function f(a,b,c,d,e){function f(a,b){return l[a].isPartial&&0===b.length}function g(a,b,c,d){l[c-d-1].isPartial||(a[2]=b)}for(var i=0,j=b.length;i<j;i++){var k=b[i],l=c[k];h(a,l,{filterOut:f,callback:g},d,e)}}function g(a,b,c,d){function e(a){return k.data[a].where<k.intoPosition}function f(a,b,c,d){0===d&&k.reducedBodies.push(b)}var g=c.compatibility.selectors.mergeablePseudoClasses,j=c.compatibility.selectors.mergeablePseudoElements,k={};a:for(var l in b){var n=b[l];if(n[0].isComplex){var o=n[n.length-1].where,p=a[o],q=[],r=i(l,g,j)?n[0].list:[l];k.intoPosition=o,k.reducedBodies=q;for(var s=0,t=r.length;s<t;s++){var u=r[s],v=b[u];if(v.length<2)continue a;if(k.data=v,h(a,v,{filterOut:e,callback:f},c,d),m(q[q.length-1])!=m(q[0]))continue a}p[2]=q[0]}}}function h(a,b,c,d,e){for(var f=[],g=[],h=[],i=b.length-1;i>=0;i--)if(!c.filterOut(i,f)){var l=b[i].where,m=a[l],n=k(m[2]);f=f.concat(n),g.push(n),h.push(l)}j(f,!0,!1,e);for(var o=h.length,p=f.length-1,q=o-1;q>=0;)if((0===q||f[p]&&g[q].indexOf(f[p])>-1)&&p>-1)p--;else{var r=f.splice(p+1);c.callback(a[h[q]],r,o,q),q--}}var i=a("./is-mergeable"),j=a("./properties/optimize"),k=a("../../utils/clone-array"),l=a("../../tokenizer/token"),m=a("../../writer/one-time").body,n=a("../../writer/one-time").rules;b.exports=d},{"../../tokenizer/token":82,"../../utils/clone-array":84,"../../writer/one-time":96,"./is-mergeable":25,"./properties/optimize":36}],43:[function(a,b,c){function d(a){var b,c,d,h,i=[];for(d=0,h=a.length;d<h;d++)b=a[d],b[0]!=e.AT_RULE_BLOCK&&b[1][0][1]!=g||(c=f([b]),i.indexOf(c)>-1?b[2]=[]:i.push(c))}var e=a("../../tokenizer/token"),f=a("../../writer/one-time").all,g="@font-face";b.exports=d},{"../../tokenizer/token":82,"../../writer/one-time":96}],44:[function(a,b,c){function d(a){var b,c,d,h,i,j={};for(h=0,i=a.length;h<i;h++)c=a[h],c[0]==e.NESTED_BLOCK&&(d=g(c[1])+"%"+f(c[2]),b=j[d],b&&(b[2]=[]),j[d]=c)}var e=a("../../tokenizer/token"),f=a("../../writer/one-time").all,g=a("../../writer/one-time").rules;b.exports=d},{"../../tokenizer/token":82,"../../writer/one-time":96}],45:[function(a,b,c){function d(a){for(var b,c,d,h,i={},j=[],k=0,l=a.length;k<l;k++)c=a[k],c[0]==e.RULE&&(b=g(c[1]),i[b]&&1==i[b].length?j.push(b):i[b]=i[b]||[],i[b].push(k));for(k=0,l=j.length;k<l;k++){b=j[k],h=[];for(var m=i[b].length-1;m>=0;m--)c=a[i[b][m]],d=f(c[2]),h.indexOf(d)>-1?c[2]=[]:h.push(d)}}var e=a("../../tokenizer/token"),f=a("../../writer/one-time").body,g=a("../../writer/one-time").rules;b.exports=d},{"../../tokenizer/token":82,"../../writer/one-time":96}],46:[function(a,b,c){function d(a,b,c){for(var d=b.length-1;d>=0;d--)for(var f=a.length-1;f>=0;f--)if(!e(a[f],b[d],c))return!1;return!0}function e(a,b,c){var d=a[0],e=a[1],q=a[2],r=a[5],s=a[6],t=b[0],u=b[1],v=b[2],w=b[5],x=b[6];return!("font"==d&&"line-height"==t||"font"==t&&"line-height"==d)&&((!o.test(d)||!o.test(t))&&(!(q==v&&g(d)==g(t)&&f(d)^f(t))&&(("border"!=q||!p.test(v)||!("border"==d||d==v||e!=u&&h(d,t)))&&(("border"!=v||!p.test(q)||!("border"==t||t==q||e!=u&&h(d,t)))&&(("border"!=q||"border"!=v||d==t||!(i(d)&&j(t)||j(d)&&i(t)))&&(q!=v||(!(d!=t||q!=v||e!=u&&!k(e,u))||(d!=t&&q==v&&d!=q&&t!=v||(d!=t&&q==v&&e==u||(!(!x||!s||l(q)||l(v)||m(w,r,!1))||!n(r,w,c)))))))))))}function f(a){return/^\-(?:moz|webkit|ms|o)\-/.test(a)}function g(a){return a.replace(/^\-(?:moz|webkit|ms|o)\-/,"")}function h(a,b){return a.split("-").pop()==b.split("-").pop()}function i(a){return"border-top"==a||"border-right"==a||"border-bottom"==a||"border-left"==a}function j(a){return"border-color"==a||"border-style"==a||"border-width"==a}function k(a,b){return f(a)&&f(b)&&a.split("-")[1]!=b.split("-")[2]}function l(a){return"font"==a||"line-height"==a||"list-style"==a}var m=a("./rules-overlap"),n=a("./specificities-overlap"),o=/align\-items|box\-align|box\-pack|flex|justify/,p=/^border\-(top|right|bottom|left|color|style|width|radius)/;b.exports={canReorder:d,canReorderSingle:e}},{"./rules-overlap":50,"./specificities-overlap":51}],47:[function(a,b,c){function d(a){var b=e[a.name];return b&&b.shorthand?b.restore(a,e):a.value}var e=a("./compactable");b.exports=d},{"./compactable":22}],48:[function(a,b,c){function d(a){for(var b=0,c=a.length;b<c;b++){var d=a[b][1];if("inherit"!=d&&d!=l.COMMA&&d!=l.FORWARD_SLASH)return!1}return!0}function e(a,b,c){function e(a){Array.prototype.unshift.apply(j,a.value)}function f(a){var c=b[a.name];return c.doubleValues&&1==c.defaultValue.length?a.value[0][1]==c.defaultValue[0]&&(!a.value[1]||a.value[1][1]==c.defaultValue[0]):c.doubleValues&&1!=c.defaultValue.length?a.value[0][1]==c.defaultValue[0]&&(a.value[1]?a.value[1][1]:a.value[0][1])==c.defaultValue[1]:a.value[0][1]==c.defaultValue}for(var g,h,i=a.components,j=[],m=i.length-1;m>=0;m--){var n=i[m],o=f(n);if("background-clip"==n.name){var p=i[m-1],q=f(p);g=n.value[0][1]==p.value[0][1],h=!g&&(q&&!o||!q&&!o||!q&&o&&n.value[0][1]!=p.value[0][1]),g?e(p):h&&(e(n),e(p)),m--}else if("background-size"==n.name){var r=i[m-1],s=f(r);g=!s&&o,h=!g&&(s&&!o||!s&&!o),g?e(r):h?(e(n),j.unshift([k.PROPERTY_VALUE,l.FORWARD_SLASH]),e(r)):1==r.value.length&&e(r),m--}else{if(o||b[n.name].multiplexLastOnly&&!c)continue;e(n)}}return 0===j.length&&1==a.value.length&&"0"==a.value[0][1]&&j.push(a.value[0]),0===j.length&&j.push([k.PROPERTY_VALUE,b[a.name].defaultValue]),d(j)?[j[0]]:j}function f(a,b){if(a.multiplex){for(var c=j(a),d=j(a),e=0;e<4;e++){var f=a.components[e],h=j(a);h.value=[f.value[0]],c.components.push(h);var i=j(a);i.value=[f.value[1]||f.value[0]],d.components.push(i)}var m=g(c,b),n=g(d,b);return m.length!=n.length||m[0][1]!=n[0][1]||m.length>1&&m[1][1]!=n[1][1]||m.length>2&&m[2][1]!=n[2][1]||m.length>3&&m[3][1]!=n[3][1]?m.concat([[k.PROPERTY_VALUE,l.FORWARD_SLASH]]).concat(n):m}return g(a,b)}function g(a){var b=a.components,c=b[0].value[0],d=b[1].value[0],e=b[2].value[0],f=b[3].value[0];return c[1]==d[1]&&c[1]==e[1]&&c[1]==f[1]?[c]:c[1]==e[1]&&d[1]==f[1]?[c,d]:d[1]==f[1]?[c,d,e]:[c,d,e,f]}function h(a){return function(b,c){if(!b.multiplex)return a(b,c,!0);var d,e,f=0,g=[],h={};for(d=0,e=b.components[0].value.length;d<e;d++)b.components[0].value[d][1]==l.COMMA&&f++;for(d=0;d<=f;d++){for(var i=j(b),m=0,n=b.components.length;m<n;m++){var o=b.components[m],p=j(o);i.components.push(p);for(var q=h[p.name]||0,r=o.value.length;q<r;q++){if(o.value[q][1]==l.COMMA){h[p.name]=q+1;break}p.value.push(o.value[q])}}var s=d==f,t=a(i,c,s);Array.prototype.push.apply(g,t),d<f&&g.push([k.PROPERTY_VALUE,l.COMMA])}return g}}function i(a,b){for(var c=a.components,e=[],f=c.length-1;f>=0;f--){var g=c[f],h=b[g.name];g.value[0][1]!=h.defaultValue&&e.unshift(g.value[0])}return 0===e.length&&e.push([k.PROPERTY_VALUE,b[a.name].defaultValue]),d(e)?[e[0]]:e}var j=a("./clone").shallow,k=a("../../tokenizer/token"),l=a("../../tokenizer/marker");b.exports={background:e,borderRadius:f,fourValues:g,multiplex:h,withoutDefaults:i}},{"../../tokenizer/marker":81,"../../tokenizer/token":82,"./clone":21}],49:[function(a,b,c){function d(a,b){return a>b?1:-1}function e(a,b){var c=l(a);return c[5]=c[5].concat(b[5]),c}function f(a,b){function c(a,b,c){for(var d=c.length-1;d>=0;d--){var e=c[d][0],g=f(b,e);if(G[g].length>1&&y(a,G[g])){l(g);break}}}function f(a,b){var c=o(b);return G[c]=G[c]||[],G[c].push([a,b]),c}function l(a){var b,c=a.split(J),d=[];for(var e in G){var f=e.split(J);for(b=f.length-1;b>=0;b--)if(c.indexOf(f[b])>-1){d.push(e);break}}for(b=d.length-1;b>=0;b--)delete G[d[b]]}function o(a){for(var b=[],c=0,d=a.length;c<d;c++)b.push(n(a[c][1]));return b.join(J)}function p(a){for(var b=[],c=[],d=a.length-1;d>=0;d--)i(n(a[d][1]),B,C)&&(c.unshift(a[d]),a[d][2].length>0&&b.indexOf(a[d])==-1&&b.push(a[d]));return b.length>1?c:[]}function q(a,b){var d=b[0],e=b[1],f=b[4],g=d.length+e.length+1,h=[],i=[],k=p(E[f]);if(!(k.length<2)){var l=s(k,g,1),m=l[0];if(m[1]>0)return c(a,b,l);for(var n=m[0].length-1;n>=0;n--)h=m[0][n][1].concat(h),i.unshift(m[0][n]);h=j(h),v(a,[b],h,i)}}function r(a,b){return a[1]>b[1]}function s(a,b,c){var d=t(a,b,c,I-1);return d.sort(r)}function t(a,b,c,d){var e=[[a,u(a,b,c)]];if(a.length>2&&d>0)for(var f=a.length-1;f>=0;f--){var g=Array.prototype.slice.call(a,0);g.splice(f,1),e=e.concat(t(g,b,c,d-1))}return e}function u(a,b,c){for(var d=0,e=a.length-1;e>=0;e--)d+=a[e][2].length>c?n(a[e][1]).length:-1;return d-(a.length-1)*b+1}function v(b,c,d,e){var f,g,h,i,j=[];for(f=e.length-1;f>=0;f--){var l=e[f];for(g=l[2].length-1;g>=0;g--){var n=l[2][g];for(h=0,i=c.length;h<i;h++){var o=c[h],p=n[1][1],q=o[0],r=o[4];if(p==q&&m([n])==r){l[2].splice(g,1);break}}}}for(f=c.length-1;f>=0;f--)j.unshift(c[f][3]);var s=[k.RULE,d,j];a.splice(b,0,s)}function w(a,b){var c=b[4],d=E[c];d&&d.length>1&&(x(a,b)||q(a,b))}function x(a,b){var c,d,e=[],f=[],g=b[4],h=p(E[g]);if(!(h.length<2)){a:for(var i in E){var j=E[i];for(c=h.length-1;c>=0;c--)if(j.indexOf(h[c])==-1)continue a;e.push(i)}if(e.length<2)return!1;for(c=e.length-1;c>=0;c--)for(d=F.length-1;d>=0;d--)if(F[d][4]==e[c]){f.unshift([F[d],h]);break}return y(a,f)}}function y(a,b){for(var c,d=0,e=[],f=b.length-1;f>=0;f--){c=b[f][0];var g=c[4];d+=g.length+(f>0?1:0),e.push(c)}var h=b[0][1],i=s(h,d,e.length)[0];if(i[1]>0)return!1;var k=[],l=[];for(f=i[0].length-1;f>=0;f--)k=i[0][f][1].concat(k),l.unshift(i[0][f]);for(k=j(k),v(a,e,k,l),f=e.length-1;f>=0;f--){c=e[f];var m=F.indexOf(c);delete E[c[4]],m>-1&&H.indexOf(m)==-1&&H.push(m)}return!0}function z(a,b,c){var d=a[0],e=b[0];if(d!=e)return!1;var f=b[4],g=E[f];return g&&g.indexOf(c)>-1}for(var A=b.options,B=A.compatibility.selectors.mergeablePseudoClasses,C=A.compatibility.selectors.mergeablePseudoElements,D=b.cache.specificity,E={},F=[],G={},H=[],I=2,J="%",K=a.length-1;K>=0;K--){var L,M,N,O,P,Q=a[K];if(Q[0]==k.RULE)L=!0;else{if(Q[0]!=k.NESTED_BLOCK)continue;L=!1}var R=F.length,S=h(Q);H=[];var T=[];for(M=S.length-1;M>=0;M--)for(N=M-1;N>=0;N--)if(!g(S[M],S[N],D)){T.push(M);break}for(M=S.length-1;M>=0;M--){var U=S[M],V=!1;
-for(N=0;N<R;N++){var W=F[N];H.indexOf(N)!=-1||g(U,W,D)||z(U,W,Q)||(w(K+1,W,Q),H.indexOf(N)==-1&&(H.push(N),delete E[W[4]])),V||(V=U[0]==W[0]&&U[1]==W[1],V&&(P=N))}if(L&&!(T.indexOf(M)>-1)){var X=U[4];E[X]=E[X]||[],E[X].push(Q),V?F[P]=e(F[P],U):F.push(U)}}for(H=H.sort(d),M=0,O=H.length;M<O;M++){var Y=H[M]-M;F.splice(Y,1)}}for(var Z=a[0]&&a[0][0]==k.AT_RULE&&0===a[0][1].indexOf("@charset")?1:0;Z<a.length-1;Z++){var $=a[Z][0]===k.AT_RULE&&0===a[Z][1].indexOf("@import"),_=a[Z][0]===k.COMMENT;if(!$&&!_)break}for(K=0;K<F.length;K++)w(Z,F[K])}var g=a("./reorderable").canReorderSingle,h=a("./extract-properties"),i=a("./is-mergeable"),j=a("./tidy-rule-duplicates"),k=a("../../tokenizer/token"),l=a("../../utils/clone-array"),m=a("../../writer/one-time").body,n=a("../../writer/one-time").rules;b.exports=f},{"../../tokenizer/token":82,"../../utils/clone-array":84,"../../writer/one-time":96,"./extract-properties":23,"./is-mergeable":25,"./reorderable":46,"./tidy-rule-duplicates":53}],50:[function(a,b,c){function d(a,b,c){var d,f,g,h,i,j;for(g=0,h=a.length;g<h;g++)for(d=a[g][1],i=0,j=b.length;i<j;i++){if(f=b[i][1],d==f)return!0;if(c&&e(d)==e(f))return!0}return!1}function e(a){return a.replace(f,"")}var f=/\-\-.+$/;b.exports=d},{}],51:[function(a,b,c){function d(a,b,c){var d,f,g,h,i,j;for(g=0,h=a.length;g<h;g++)for(d=e(a[g][1],c),i=0,j=b.length;i<j;i++)if(f=e(b[i][1],c),d[0]===f[0]&&d[1]===f[1]&&d[2]===f[2])return!0;return!1}function e(a,b){var c;return a in b||(b[a]=c=f(a)),c||b[a]}var f=a("./specificity");b.exports=d},{"./specificity":52}],52:[function(a,b,c){function d(a){var b,c,d,i,k,l,m,n=[0,0,0],o=0,p=!1,q=!1;for(l=0,m=a.length;l<m;l++){if(b=a[l],c);else if(b!=f.SINGLE_QUOTE||i||d)if(b==f.SINGLE_QUOTE&&!i&&d)d=!1;else if(b!=f.DOUBLE_QUOTE||i||d)if(b==f.DOUBLE_QUOTE&&i&&!d)i=!1;else{if(d||i)continue;o>0&&!p||(b==f.OPEN_ROUND_BRACKET?o++:b==f.CLOSE_ROUND_BRACKET&&1==o?(o--,p=!1):b==f.CLOSE_ROUND_BRACKET?o--:b==g.HASH?n[0]++:b==g.DOT||b==f.OPEN_SQUARE_BRACKET?n[1]++:b!=g.PSEUDO||q||e(a,l)?b==g.PSEUDO?p=!0:(0===l||k)&&h.test(b)&&n[2]++:(n[1]++,p=!1))}else i=!0;else d=!0;c=b==f.BACK_SLASH,q=b==g.PSEUDO,k=!c&&j.test(b)}return n}function e(a,b){return a.indexOf(i,b)===b}var f=a("../../tokenizer/marker"),g={ADJACENT_SIBLING:"+",DESCENDANT:">",DOT:".",HASH:"#",NON_ADJACENT_SIBLING:"~",PSEUDO:":"},h=/[a-zA-Z]/,i=":not(",j=/[\s,\(>~\+]/;b.exports=d},{"../../tokenizer/marker":81}],53:[function(a,b,c){function d(a,b){return a[1]>b[1]?1:-1}function e(a){for(var b=[],c=[],e=0,f=a.length;e<f;e++){var g=a[e];c.indexOf(g[1])==-1&&(c.push(g[1]),b.push(g))}return b.sort(d)}b.exports=e},{}],54:[function(a,b,c){function d(a){for(var b=a.length-1;b>=0;b--){var c=a[b];c.unused&&c.all.splice(c.position,1)}}b.exports=d},{}],55:[function(a,b,c){function d(a,b){var c,d,g,h;for(h=a.length-1;h>=0;h--)c=a[h],c.unused||(c.dirty||c.important||c.hack)&&(b?(d=b(c),c.value=d):d=c.value,c.important&&e(c),c.hack&&f(c),"all"in c&&(g=c.all[c.position],g[1][1]=c.name,g.splice(2,g.length-1),Array.prototype.push.apply(g,d)))}function e(a){a.value[a.value.length-1][1]+=k}function f(a){a.hack==g.UNDERSCORE?a.name=l+a.name:a.hack==g.ASTERISK?a.name=i+a.name:a.hack==g.BACKSLASH?a.value[a.value.length-1][1]+=j:a.hack==g.BANG&&(a.value[a.value.length-1][1]+=h.SPACE+m)}var g=a("./hack"),h=a("../tokenizer/marker"),i="*",j="\\9",k="!important",l="_",m="!ie";b.exports=d},{"../tokenizer/marker":81,"./hack":9}],56:[function(a,b,c){function d(a,b){if(!o(a)||!o(b))return!1;var c=a.substring(0,a.indexOf("(")),d=b.substring(0,b.indexOf("("));return c===d}function e(a){return Z.test(a)}function f(a){return Y["background-attachment"].indexOf(a)>-1}function g(a){return Y["background-clip"].indexOf(a)>-1}function h(a){return Y["background-repeat"].indexOf(a)>-1}function i(a){return Y["background-origin"].indexOf(a)>-1}function j(a){var b,c,d;if("inherit"===a)return!0;for(b=a.split(" "),c=0,d=b.length;c<d;c++)if(""!==b[c]&&!k(b[c]))return!1;return!0}function k(a){return Y["background-position"].indexOf(a)>-1||V.test(a)}function l(a){return Y["background-size"].indexOf(a)>-1||U.test(a)}function m(a){return x(a)||n(a)}function n(a){return r(a)||y(a)||s(a)}function o(a){return!W.test(a)&&T.test(a)}function p(a){return!W.test(a)&&R.test(a)}function q(a){return X.indexOf(a)>-1}function r(a){return(4===a.length||7===a.length)&&"#"===a[0]}function s(a){return a.length>0&&0===a.indexOf("hsla(")&&a.indexOf(")")===a.length-1}function t(a){return"none"==a||"inherit"==a||D(a)}function u(a,b,c){return Y[a].indexOf(b)>-1||c&&q(b)}function v(a){return Y["list-style-type"].indexOf(a)>-1}function w(a){return Y["list-style-position"].indexOf(a)>-1}function x(a){return"auto"!==a&&("transparent"===a||"inherit"===a||/^[a-zA-Z]+$/.test(a))}function y(a){return a.length>0&&0===a.indexOf("rgba(")&&a.indexOf(")")===a.length-1}function z(a){return Y["*-style"].indexOf(a)>-1}function A(a,b){return C(a,b)||m(b)||q(b)}function B(a,b){return a.test(b)}function C(a,b){return a.test(b)}function D(a){return W.test(a)}function E(a){return S.test(a)}function F(a){return/^-([A-Za-z0-9]|-)*$/gi.test(a)}function G(a,b){return B(a,b)||Y.width.indexOf(b)>-1}function H(a){return"auto"==a||q(a)||a.length>0&&a==""+parseInt(a)}function I(a){var b=J.slice(0).filter(function(b){return!(b in a.units)||a.units[b]===!0}),c="(\\-?\\.?\\d+\\.?\\d*("+b.join("|")+"|)|auto|inherit)",I=new RegExp("^"+c+"$","i"),K=new RegExp("^(none|"+Y.width.join("|")+"|"+c+"|"+O+"|"+M+"|"+N+")$","i"),L=a.colors.opacity;return{areSameFunction:d,colorOpacity:L,hasNoVendorPrefix:e,isValidBackgroundAttachment:f,isValidBackgroundClip:g,isValidBackgroundOrigin:i,isValidBackgroundPosition:j,isValidBackgroundPositionPart:k,isValidBackgroundRepeat:h,isValidBackgroundSizePart:l,isValidColor:m,isValidColorValue:n,isValidFunction:o,isValidFunctionWithoutVendorPrefix:p,isValidGlobalValue:q,isValidHexColor:r,isValidHslaColor:s,isValidImage:t,isValidKeywordValue:u,isValidListStylePosition:w,isValidListStyleType:v,isValidNamedColor:x,isValidRgbaColor:y,isValidStyle:z,isValidTextShadow:A.bind(null,I),isValidUnit:B.bind(null,K),isValidUnitWithoutFunction:C.bind(null,I),isValidUrl:D,isValidVariable:E,isValidVendorPrefixedValue:F,isValidWidth:G.bind(null,I),isValidZIndex:H}}var J=["%","ch","cm","em","ex","in","mm","pc","pt","px","rem","vh","vm","vmax","vmin","vw"],K="(\\-?\\.?\\d+\\.?\\d*("+J.join("|")+"|)|auto|inherit)",L="(\\-moz\\-|\\-webkit\\-)?calc\\([^\\)]+\\)",M="[A-Z]+(\\-|[A-Z]|[0-9])+\\(.*?\\)",N="\\-(\\-|[A-Z]|[0-9])+\\(.*?\\)",O="var\\(\\-\\-[^\\)]+\\)",P="("+O+"|"+M+"|"+N+")",Q="("+K+"|"+L+")",R=new RegExp("^"+M+"$","i"),S=new RegExp("^"+O+"$","i"),T=new RegExp("^"+P+"$","i"),U=new RegExp("^"+K+"$","i"),V=new RegExp("^"+Q+"$","i"),W=/^url\([\s\S]+\)$/i,X=["inherit","initial","unset"],Y={"*-style":["auto","dashed","dotted","double","groove","hidden","inset","none","outset","ridge","solid"],"background-attachment":["fixed","inherit","local","scroll"],"background-clip":["border-box","content-box","inherit","padding-box","text"],"background-origin":["border-box","content-box","inherit","padding-box"],"background-position":["bottom","center","left","right","top"],"background-repeat":["no-repeat","inherit","repeat","repeat-x","repeat-y","round","space"],"background-size":["auto","cover","contain"],"border-collapse":["collapse","inherit","separate"],bottom:["auto"],clear:["both","left","none","right"],cursor:["all-scroll","auto","col-resize","crosshair","default","e-resize","help","move","n-resize","ne-resize","no-drop","not-allowed","nw-resize","pointer","progress","row-resize","s-resize","se-resize","sw-resize","text","vertical-text","w-resize","wait"],display:["block","inline","inline-block","inline-table","list-item","none","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group"],float:["left","none","right"],left:["auto"],"font-style":["italic","normal","oblique"],"font-weight":["100","200","300","400","500","600","700","800","900","bold","bolder","lighter","normal"],"list-style-position":["inside","outside"],"list-style-type":["armenian","circle","decimal","decimal-leading-zero","disc","decimal|disc","georgian","lower-alpha","lower-greek","lower-latin","lower-roman","none","square","upper-alpha","upper-latin","upper-roman"],overflow:["auto","hidden","scroll","visible"],position:["absolute","fixed","relative","static"],right:["auto"],"text-align":["center","justify","left","left|right","right"],"text-decoration":["line-through","none","overline","underline"],"text-overflow":["clip","ellipsis"],top:["auto"],"vertical-align":["baseline","bottom","middle","sub","super","text-bottom","text-top","top"],visibility:["collapse","hidden","visible"],"white-space":["normal","nowrap","pre"],width:["inherit","initial","medium","thick","thin"]},Z=/(^|\W)-\w+\-/;b.exports=I},{}],57:[function(a,b,c){function d(a,b){var c,d,f,g=[];for(f=a.length-1;f>=0;f--)d=a[f],d[0]==p.PROPERTY&&(!b&&e(d)||(c=m(d),c.all=a,c.position=f,g.unshift(c)));return g}function e(a){var b,c,d;for(b=2,c=a.length;b<c;b++)if(d=a[b],d[0]==p.PROPERTY_VALUE&&f(d[1]))return!0;return!1}function f(a){return q.VARIABLE_REFERENCE_PATTERN.test(a)}function g(a){var b,c,d;for(c=3,d=a.length;c<d;c++)if(b=a[c],b[0]==p.PROPERTY_VALUE&&(b[1]==o.COMMA||b[1]==o.FORWARD_SLASH))return!0;return!1}function h(a){var b=!1,c=a[1][1],d=a[a.length-1];return c[0]==q.UNDERSCORE?b=n.UNDERSCORE:c[0]==q.ASTERISK?b=n.ASTERISK:d[1][0]!=q.BANG||d[1].match(q.IMPORTANT_WORD_PATTERN)?d[1].indexOf(q.BANG)>0&&!d[1].match(q.IMPORTANT_WORD_PATTERN)&&q.BANG_SUFFIX_PATTERN.test(d[1])?b=n.BANG:d[1].indexOf(q.BACKSLASH)>0&&d[1].indexOf(q.BACKSLASH)==d[1].length-q.BACKSLASH.length-1?b=n.BACKSLASH:0===d[1].indexOf(q.BACKSLASH)&&2==d[1].length&&(b=n.BACKSLASH):b=n.BANG,b}function i(a){if(a.length<3)return!1;var b=a[a.length-1];return!!q.IMPORTANT_TOKEN_PATTERN.test(b[1])||!(!q.IMPORTANT_WORD_PATTERN.test(b[1])||!q.SUFFIX_BANG_PATTERN.test(a[a.length-2][1]))}function j(a){var b=a[a.length-1],c=a[a.length-2];q.IMPORTANT_TOKEN_PATTERN.test(b[1])?b[1]=b[1].replace(q.IMPORTANT_TOKEN_PATTERN,""):(b[1]=b[1].replace(q.IMPORTANT_WORD_PATTERN,""),c[1]=c[1].replace(q.SUFFIX_BANG_PATTERN,"")),0===b[1].length&&a.pop(),0===c[1].length&&a.pop()}function k(a){a[1][1]=a[1][1].substring(1)}function l(a,b){var c=a[a.length-1];c[1]=c[1].substring(0,c[1].indexOf(b==n.BACKSLASH?q.BACKSLASH:q.BANG)).trim(),0===c[1].length&&a.pop()}function m(a){var b=i(a);b&&j(a);var c=h(a);return c==n.ASTERISK||c==n.UNDERSCORE?k(a):c!=n.BACKSLASH&&c!=n.BANG||l(a,c),{block:a[2]&&a[2][0]==p.PROPERTY_BLOCK,components:[],dirty:!1,hack:c,important:b,name:a[1][1],multiplex:a.length>3&&g(a),position:0,shorthand:!1,unused:!1,value:a.slice(2)}}var n=a("./hack"),o=a("../tokenizer/marker"),p=a("../tokenizer/token"),q={ASTERISK:"*",BACKSLASH:"\\",BANG:"!",BANG_SUFFIX_PATTERN:/!\w+$/,IMPORTANT_TOKEN:"!important",IMPORTANT_TOKEN_PATTERN:new RegExp("!important$","i"),IMPORTANT_WORD:"important",IMPORTANT_WORD_PATTERN:new RegExp("important$","i"),SUFFIX_BANG_PATTERN:/!$/,UNDERSCORE:"_",VARIABLE_REFERENCE_PATTERN:/var\(--.+\)$/};b.exports={all:d,single:m}},{"../tokenizer/marker":81,"../tokenizer/token":82,"./hack":9}],58:[function(a,b,c){function d(a){return e(g["*"],f(a))}function e(a,b){for(var c in a){var d=a[c];"object"!=typeof d||Array.isArray(d)?b[c]=c in b?b[c]:d:b[c]=e(d,b[c]||{})}return b}function f(a){if("object"==typeof a)return a;if(!/[,\+\-]/.test(a))return g[a]||g["*"];var b=a.split(","),c=b[0]in g?g[b.shift()]:g["*"];return a={},b.forEach(function(b){var c="+"==b[0],d=b.substring(1).split("."),e=d[0],f=d[1];a[e]=a[e]||{},a[e][f]=c}),e(c,a)}var g={"*":{colors:{opacity:!0},properties:{backgroundClipMerging:!0,backgroundOriginMerging:!0,backgroundSizeMerging:!0,colors:!0,ieBangHack:!1,ieFilters:!1,iePrefixHack:!1,ieSuffixHack:!1,merging:!0,shorterLengthUnits:!1,spaceAfterClosingBrace:!0,urlQuotes:!1,zeroUnits:!0},selectors:{adjacentSpace:!1,ie7Hack:!1,mergeablePseudoClasses:[":active",":after",":before",":empty",":checked",":disabled",":empty",":enabled",":first-child",":first-letter",":first-line",":first-of-type",":focus",":hover",":lang",":last-child",":last-of-type",":link",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type",":only-child",":only-of-type",":root",":target",":visited"],mergeablePseudoElements:["::after","::before","::first-letter","::first-line"]},units:{ch:!0,in:!0,pc:!0,pt:!0,rem:!0,vh:!0,vm:!0,vmax:!0,vmin:!0,vw:!0}}};g.ie11=g["*"],g.ie10=g["*"],g.ie9=e(g["*"],{properties:{ieFilters:!0,ieSuffixHack:!0}}),g.ie8=e(g.ie9,{colors:{opacity:!1},properties:{backgroundClipMerging:!1,backgroundOriginMerging:!1,backgroundSizeMerging:!1,iePrefixHack:!0,merging:!1},selectors:{mergeablePseudoClasses:[":after",":before",":first-child",":first-letter",":focus",":hover",":visited"],mergeablePseudoElements:[]},units:{ch:!1,rem:!1,vh:!1,vm:!1,vmax:!1,vmin:!1,vw:!1}}),g.ie7=e(g.ie8,{properties:{ieBangHack:!0},selectors:{ie7Hack:!0,mergeablePseudoClasses:[":first-child",":first-letter",":hover",":visited"]}}),b.exports=d},{}],59:[function(a,b,c){function d(a){var b={};return b[l.AfterAtRule]=a,b[l.AfterBlockBegins]=a,b[l.AfterBlockEnds]=a,b[l.AfterComment]=a,b[l.AfterProperty]=a,b[l.AfterRuleBegins]=a,b[l.AfterRuleEnds]=a,b[l.BeforeBlockEnds]=a,b[l.BetweenSelectors]=a,b}function e(a){var b={};return b[n.AroundSelectorRelation]=a,b[n.BeforeBlockBegins]=a,b[n.BeforeValue]=a,b}function f(a){return void 0!==a&&a!==!1&&("object"==typeof a&&"indentBy"in a&&(a=k(a,{indentBy:parseInt(a.indentBy)})),"object"==typeof a&&"indentWith"in a&&(a=k(a,{indentWith:j(a.indentWith)})),"object"==typeof a?k(o,a):"object"==typeof a?k(o,a):"string"==typeof a&&a==p?k(o,{breaks:d(!0),indentBy:2,spaces:e(!0)}):"string"==typeof a&&a==q?k(o,{breaks:{afterAtRule:!0,afterBlockBegins:!0,afterBlockEnds:!0,afterComment:!0,afterRuleEnds:!0,beforeBlockEnds:!0}}):"string"==typeof a?k(o,g(a)):o)}function g(a){return a.split(r).reduce(function(a,b){var c=b.split(s),d=c[0],e=c[1];return"breaks"==d||"spaces"==d?a[d]=h(e):"indentBy"==d||"wrapAt"==d?a[d]=parseInt(e):"indentWith"==d&&(a[d]=j(e)),a},{})}function h(a){return a.split(t).reduce(function(a,b){var c=b.split(u),d=c[0],e=c[1];return a[d]=i(e),a},{})}function i(a){switch(a){case v:case w:return!1;case x:case y:return!0;default:return a}}function j(a){switch(a){case"space":return m.Space;case"tab":return m.Tab;default:return a}}var k=a("../utils/override"),l={AfterAtRule:"afterAtRule",AfterBlockBegins:"afterBlockBegins",AfterBlockEnds:"afterBlockEnds",AfterComment:"afterComment",AfterProperty:"afterProperty",AfterRuleBegins:"afterRuleBegins",AfterRuleEnds:"afterRuleEnds",BeforeBlockEnds:"beforeBlockEnds",BetweenSelectors:"betweenSelectors"},m={Space:" ",Tab:"\t"},n={AroundSelectorRelation:"aroundSelectorRelation",BeforeBlockBegins:"beforeBlockBegins",BeforeValue:"beforeValue"},o={breaks:d(!1),indentBy:0,indentWith:m.Space,spaces:e(!1),wrapAt:!1},p="beautify",q="keep-breaks",r=";",s=":",t=",",u="=",v="false",w="off",x="true",y="on";b.exports={Breaks:l,Spaces:n,formatFrom:f}},{"../utils/override":93}],60:[function(a,b,c){(function(c){function d(a){return g(e(c.env.HTTP_PROXY||c.env.http_proxy),a||{})}function e(a){return a?{hostname:f.parse(a).hostname,port:parseInt(f.parse(a).port)}:{}}var f=a("url"),g=a("../utils/override");b.exports=d}).call(this,a("_process"))},{"../utils/override":93,_process:111,url:158}],61:[function(a,b,c){function d(a){return a||e}var e=5e3;b.exports=d},{}],62:[function(a,b,c){function d(a){return Array.isArray(a)?a:void 0===a?["local"]:a.split(",")}b.exports=d},{}],63:[function(a,b,c){function d(){}function e(a){var b=k(m,{}),c=l.Zero,d=l.One,e=l.Two;return void 0===a?(delete b[e],b):("string"==typeof a&&(a=parseInt(a)),"number"==typeof a&&a===parseInt(e)?b:"number"==typeof a&&a===parseInt(d)?(delete b[e],b):"number"==typeof a&&a===parseInt(c)?(delete b[e],delete b[d],b):("object"==typeof a&&(a=h(a)),d in a&&"roundingPrecision"in a[d]&&(a[d].roundingPrecision=j(a[d].roundingPrecision)),(c in a||d in a||e in a)&&(b[c]=k(b[c],a[c])),d in a&&n in a[d]&&(b[d]=k(b[d],f(d,g(a[d][n]))),delete a[d][n]),d in a&&o in a[d]&&(b[d]=k(b[d],f(d,g(a[d][o]))),delete a[d][o]),d in a||e in a?b[d]=k(b[d],a[d]):delete b[d],e in a&&n in a[e]&&(b[e]=k(b[e],f(e,g(a[e][n]))),delete a[e][n]),e in a&&o in a[e]&&(b[e]=k(b[e],f(e,g(a[e][o]))),delete a[e][o]),e in a?b[e]=k(b[e],a[e]):delete b[e],b))}function f(a,b){var c,d=k(m[a],{});for(c in d)"boolean"==typeof d[c]&&(d[c]=b);return d}function g(a){switch(a){case p:case q:return!1;case r:case s:return!0;default:return a}}function h(a){var b,c,d=k(a,{});for(c=0;c<=2;c++)b=""+c,b in d&&(void 0===d[b]||d[b]===!1)&&delete d[b],b in d&&d[b]===!0&&(d[b]={}),b in d&&"string"==typeof d[b]&&(d[b]=i(d[b],b));return d}function i(a,b){return a.split(t).reduce(function(a,c){var d=c.split(u),e=d[0],h=d[1],i=g(h);return n==e||o==e?a=k(a,f(b,i)):a[e]=i,a},{})}var j=a("./rounding-precision").roundingPrecisionFrom,k=a("../utils/override"),l={Zero:"0",One:"1",Two:"2"},m={};m[l.Zero]={},m[l.One]={cleanupCharsets:!0,normalizeUrls:!0,optimizeBackground:!0,optimizeBorderRadius:!0,optimizeFilter:!0,optimizeFont:!0,optimizeFontWeight:!0,optimizeOutline:!0,removeNegativePaddings:!0,removeQuotes:!0,removeWhitespace:!0,replaceMultipleZeros:!0,replaceTimeUnits:!0,replaceZeroUnits:!0,roundingPrecision:j(void 0),selectorsSortingMethod:"standard",specialComments:"all",tidyAtRules:!0,tidyBlockScopes:!0,tidySelectors:!0,transform:d},m[l.Two]={mergeAdjacentRules:!0,mergeIntoShorthands:!0,mergeMedia:!0,mergeNonAdjacentRules:!0,mergeSemantically:!1,overrideProperties:!0,reduceNonAdjacentRules:!0,removeDuplicateFontRules:!0,removeDuplicateMediaBlocks:!0,removeDuplicateRules:!0,restructureRules:!1};var n="*",o="all",p="false",q="off",r="true",s="on",t=";",u=":";b.exports={OptimizationLevel:l,optimizationLevelFrom:e}},{"../utils/override":93,"./rounding-precision":66}],64:[function(a,b,c){(function(c){function d(a){return a?e.resolve(a):c.cwd()}var e=a("path");b.exports=d}).call(this,a("_process"))},{_process:111,path:109}],65:[function(a,b,c){function d(a){return void 0===a||!!a}b.exports=d},{}],66:[function(a,b,c){function d(a){return g(e(j),f(a))}function e(a){return{ch:a,cm:a,em:a,ex:a,in:a,mm:a,pc:a,pt:a,px:a,q:a,rem:a,vh:a,vmax:a,vmin:a,vw:a,"%":a}}function f(a){return null===a||void 0===a?{}:"boolean"==typeof a?{}:"number"==typeof a&&a==-1?e(j):"number"==typeof a?e(a):"string"==typeof a&&h.test(a)?e(parseInt(a)):"string"==typeof a&&a==j?e(j):"object"==typeof a?a:a.split(k).reduce(function(a,b){var c=b.split(l),d=c[0],f=parseInt(c[1]);return(isNaN(f)||f==-1)&&(f=j),i.indexOf(d)>-1?a=g(a,e(f)):a[d]=f,a},{})}var g=a("../utils/override"),h=/^\d+$/,i=["*","all"],j="off",k=",",l="=";b.exports={DEFAULT:j,roundingPrecisionFrom:d}},{"../utils/override":93}],67:[function(a,b,c){(function(c,d){function e(a,b,c){var d={callback:c,index:0,inline:b.options.inline,inlineRequest:b.options.inlineRequest,inlineTimeout:b.options.inlineTimeout,inputSourceMapTracker:b.inputSourceMapTracker,localOnly:b.localOnly,processedTokens:[],rebaseTo:b.options.rebaseTo,sourceTokens:a,warnings:b.warnings};return a.length>0?f(d):c(a)}function f(a){var b,c,d,e=[],f=g(a.sourceTokens[0]);for(d=a.sourceTokens.length;a.index<d;a.index++)if(c=a.sourceTokens[a.index],b=g(c),b!=f&&(e=[],f=b),e.push(c),a.processedTokens.push(c),c[0]==v.COMMENT&&z.test(c[1]))return h(c[1],b,e,a);return a.callback(a.processedTokens)}function g(a){var b,c;return a[0]==v.AT_RULE||a[0]==v.COMMENT?c=a[2][0]:(b=a[1][0],c=b[2][0]),c[2]}function h(a,b,c,d){return i(a,d,function(a){return a&&(d.inputSourceMapTracker.track(b,a),m(c,d.inputSourceMapTracker)),d.index++,f(d)})}function i(a,b,c){var d,e,f,g=z.exec(a)[1];return x(g)?(e=j(g),c(e)):y(g)?k(g,b,function(a){var b;a?(b=JSON.parse(a),f=u(b,g),c(f)):c(null)}):(d=p.resolve(b.rebaseTo,g),e=l(d,b),e?(f=t(e,d,b.rebaseTo),c(f)):c(null))}function j(a){var b=s(a),e=b[2]?b[2].split(/[=;]/)[2]:"us-ascii",f=b[3]?b[3].split(";")[1]:"utf8",g="utf8"==f?c.unescape(b[4]):b[4],h=new d(g,f);return h.charset=e,JSON.parse(h.toString())}function k(a,b,c){var d=q(a,!0,b.inline),e=!w(a);return b.localOnly?(b.warnings.push('Cannot fetch remote resource from "'+a+'" as no callback given.'),c(null)):e?(b.warnings.push('Cannot fetch "'+a+'" as no protocol given.'),c(null)):d?void r(a,b.inlineRequest,b.inlineTimeout,function(d,e){return d?(b.warnings.push('Missing source map at "'+a+'" - '+d),c(null)):void c(e)}):(b.warnings.push('Cannot fetch "'+a+'" as resource is not allowed.'),c(null))}function l(a,b){var c,d=q(a,!1,b.inline);return o.existsSync(a)&&o.statSync(a).isFile()?d?(c=o.readFileSync(a,"utf-8"),JSON.parse(c)):(b.warnings.push('Cannot fetch "'+a+'" as resource is not allowed.'),null):(b.warnings.push('Ignoring local source map at "'+a+'" as resource is missing.'),null)}function m(a,b){var c,d,e;for(d=0,e=a.length;d<e;d++)switch(c=a[d],c[0]){case v.AT_RULE:n(c,b);break;case v.AT_RULE_BLOCK:m(c[1],b),m(c[2],b);break;case v.AT_RULE_BLOCK_SCOPE:n(c,b);break;case v.NESTED_BLOCK:m(c[1],b),m(c[2],b);break;case v.NESTED_BLOCK_SCOPE:n(c,b);break;case v.COMMENT:n(c,b);break;case v.PROPERTY:m(c,b);break;case v.PROPERTY_BLOCK:m(c[1],b);break;case v.PROPERTY_NAME:n(c,b);break;case v.PROPERTY_VALUE:n(c,b);break;case v.RULE:m(c[1],b),m(c[2],b);break;case v.RULE_SCOPE:n(c,b)}return a}function n(a,b){var c,d,e=a[1],f=a[2],g=[];for(c=0,d=f.length;c<d;c++)g.push(b.originalPositionFor(f[c],e.length));a[2]=g}var o=a("fs"),p=a("path"),q=a("./is-allowed-resource"),r=a("./load-remote-resource"),s=a("./match-data-uri"),t=a("./rebase-local-map"),u=a("./rebase-remote-map"),v=a("../tokenizer/token"),w=a("../utils/has-protocol"),x=a("../utils/is-data-uri-resource"),y=a("../utils/is-remote-resource"),z=/^\/\*# sourceMappingURL=(\S+) \*\/$/;b.exports=e}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},a("buffer").Buffer)},{"../tokenizer/token":82,"../utils/has-protocol":86,"../utils/is-data-uri-resource":87,"../utils/is-remote-resource":91,"./is-allowed-resource":70,"./load-remote-resource":72,"./match-data-uri":73,"./rebase-local-map":76,"./rebase-remote-map":77,buffer:5,fs:3,path:109}],68:[function(a,b,c){function d(a){var b,c,d,m;return d=a.replace(h,"").trim().replace(k,"(").replace(l,")").replace(i,"").replace(j,""),m=e(d," "),b=m[0].replace(f,"").replace(g,""),c=m.slice(1).join(" "),[b,c]}var e=a("../utils/split"),f=/^\(/,g=/\)$/,h=/^@import/i,i=/['"]\s*/,j=/\s*['"]/,k=/^url\(\s*/i,l=/\s*\)/i;b.exports=d},{"../utils/split":94}],69:[function(a,b,c){function d(){var a={};return{all:e.bind(null,a),isTracking:f.bind(null,a),originalPositionFor:g.bind(null,a),track:i.bind(null,a)}}function e(a){return a}function f(a,b){return b in a}function g(a,b,c,d){for(var e,f=b[0],i=b[1],j=b[2],k={line:f,column:i+c};!e&&k.column>i;)k.column--,e=a[j].originalPositionFor(k);return null===e.line&&f>1&&d>0?g(a,[f-1,i,j],c,d-1):null!==e.line?h(e):b}function h(a){return[a.line,a.column,a.source]}function i(a,b,c){a[b]=new j(c)}var j=a("source-map").SourceMapConsumer;b.exports=d},{"source-map":150}],70:[function(a,b,c){function d(a,b,c){var h,k,l,m,n,o,p=!b;if(0===c.length)return!1;for(b&&!i(a)&&(a=j+a),h=b?g.parse(a).host:a,k=b?a:f.resolve(a),o=0;o<c.length;o++)l=c[o],m="!"==l[0],n=l.substring(1),p=m&&b&&e(n)?p&&!d(a,!0,[n]):!m||b||e(n)?m?p&&!0:"all"==l||(b&&"local"==l?p||!1:!(!b||"remote"!=l)||!(!b&&"remote"==l)&&(!b&&"local"==l||(l===h||(l===a||(!(!b||0!==k.indexOf(l))||(!b&&0===k.indexOf(f.resolve(l))||b!=e(n)&&(p&&!0))))))):p&&!d(a,!1,[n]);return p}function e(a){return h(a)||g.parse(j+"//"+a).host==a}var f=a("path"),g=a("url"),h=a("../utils/is-remote-resource"),i=a("../utils/has-protocol"),j="http:";b.exports=d},{"../utils/has-protocol":86,"../utils/is-remote-resource":91,path:109,url:158}],71:[function(a,b,c){function d(a,b){var c={callback:b,index:0,inline:a.options.inline,inlineRequest:a.options.inlineRequest,inlineTimeout:a.options.inlineTimeout,localOnly:a.localOnly,rebaseTo:a.options.rebaseTo,sourcesContent:a.sourcesContent,uriToSource:e(a.inputSourceMapTracker.all()),warnings:a.warnings};return f(c)}function e(a){var b,c,d,e,f,g={};for(d in a)for(b=a[d],e=0,f=b.sources.length;e<f;e++)c=b.sources[e],d=b.sourceContentFor(c,!0),g[c]=d;return g}function f(a){var b,c,d,e=Object.keys(a.uriToSource);for(d=e.length;a.index<d;a.index++){if(b=e[a.index],c=a.uriToSource[b],!c)return g(b,a);a.sourcesContent[b]=c}return a.callback()}function g(a,b){var c;return o(a)?h(a,b,function(c){return b.index++,b.sourcesContent[a]=c,f(b)}):(c=i(a,b),b.index++,b.sourcesContent[a]=c,f(b))}function h(a,b,c){var d=l(a,!0,b.inline),e=!n(a);return b.localOnly?(b.warnings.push('Cannot fetch remote resource from "'+a+'" as no callback given.'),c(null)):e?(b.warnings.push('Cannot fetch "'+a+'" as no protocol given.'),c(null)):d?void m(a,b.inlineRequest,b.inlineTimeout,function(d,e){d&&b.warnings.push('Missing original source at "'+a+'" - '+d),c(e)}):(b.warnings.push('Cannot fetch "'+a+'" as resource is not allowed.'),c(null))}function i(a,b){var c=l(a,!1,b.inline),d=k.resolve(b.rebaseTo,a);return j.existsSync(d)&&j.statSync(d).isFile()?c?j.readFileSync(d,"utf8"):(b.warnings.push('Cannot fetch "'+d+'" as resource is not allowed.'),null):(b.warnings.push('Ignoring local source map at "'+d+'" as resource is missing.'),null)}var j=a("fs"),k=a("path"),l=a("./is-allowed-resource"),m=a("./load-remote-resource"),n=a("../utils/has-protocol"),o=a("../utils/is-remote-resource");b.exports=d},{"../utils/has-protocol":86,"../utils/is-remote-resource":91,"./is-allowed-resource":70,"./load-remote-resource":72,fs:3,path:109}],72:[function(a,b,c){function d(a,b,c,l){var m,n,o=b.protocol||b.hostname,p=!1;m=j(g.parse(a),b||{}),void 0!==b.hostname&&(m.protocol=b.protocol||k,m.path=m.href),n=o&&!i(o)||h(a)?e.get:f.get,n(m,function(e){var f,h=[];if(!p){if(e.statusCode<200||e.statusCode>399)return l(e.statusCode,null);if(e.statusCode>299)return f=g.resolve(a,e.headers.location),d(f,b,c,l);e.on("data",function(a){h.push(a.toString())}),e.on("end",function(){var a=h.join("");l(null,a)})}}).on("error",function(a){p||(p=!0,l(a.message,null))}).on("timeout",function(){p||(p=!0,l("timeout",null))}).setTimeout(c)}var e=a("http"),f=a("https"),g=a("url"),h=a("../utils/is-http-resource"),i=a("../utils/is-https-resource"),j=a("../utils/override"),k="http:";b.exports=d},{"../utils/is-http-resource":88,"../utils/is-https-resource":89,"../utils/override":93,http:151,https:102,url:158}],73:[function(a,b,c){function d(a){return e.exec(a)}var e=/^data:(\S*?)?(;charset=[^;]+)?(;[^,]+?)?,(.+)/;b.exports=d},{}],74:[function(a,b,c){function d(a){return a.replace(f,e)}var e="/",f=/\\/g;b.exports=d},{}],75:[function(a,b,c){(function(c,d){function e(a,b,c){return f(a,b,function(a){return w(a,b,function(){return b.options.sourceMapInlineSources?z(b,function(){return c(a)}):c(a)})})}function f(a,b,d){return"string"==typeof a?g(a,b,d):c.isBuffer(a)?g(a.toString(),b,d):Array.isArray(a)?h(a,b,d):"object"==typeof a?i(a,b,d):void 0}function g(a,b,c){return b.source=void 0,b.sourcesContent[void 0]=a,b.stats.originalSize+=a.length,m(a,b,{inline:b.options.inline},c)}function h(a,b,c){var d=a.reduce(function(a,b){var c=j(b);return a.push(l(c)),a},[]);return m(d.join(""),b,{inline:["all"]},c)}function i(a,b,c){var d,e,f,g=[];for(d in a)f=a[d],e=j(d),g.push(l(e)),b.sourcesContent[e]=f.styles,f.sourceMap&&k(f.sourceMap,e,b);return m(g.join(""),b,{inline:["all"]},c)}function j(a){var b,c,d,e=v.resolve("");return L(a)?a:(b=v.isAbsolute(a)?a:v.resolve(a),c=v.relative(e,b),d=B(c))}function k(a,b,c){var d="string"==typeof a?JSON.parse(a):a,e=L(b)?E(d,b):D(d,b||M,c.options.rebaseTo);c.inputSourceMapTracker.track(b,e)}function l(a){return F("url("+a+")","")+I.SEMICOLON}function m(a,b,c,d){var e,f={};return b.source?L(b.source)?(f.fromBase=b.source,f.toBase=b.source):v.isAbsolute(b.source)?(f.fromBase=v.dirname(b.source),f.toBase=b.options.rebaseTo):(f.fromBase=v.dirname(v.resolve(b.source)),f.toBase=b.options.rebaseTo):(f.fromBase=v.resolve(""),f.toBase=b.options.rebaseTo),e=G(a,b),e=C(e,b.options.rebase,b.validator,f),n(c.inline)?o(e,b,c,d):d(e)}function n(a){return!(1==a.length&&"none"==a[0])}function o(a,b,c,d){var e={afterContent:!1,callback:d,errors:b.errors,externalContext:b,inlinedStylesheets:c.inlinedStylesheets||b.inlinedStylesheets,inline:c.inline,inlineRequest:b.options.inlineRequest,inlineTimeout:b.options.inlineTimeout,isRemote:c.isRemote||!1,localOnly:b.localOnly,outputTokens:[],rebaseTo:b.options.rebaseTo,sourceTokens:a,warnings:b.warnings};return p(e)}function p(a){var b,c,d;for(c=0,d=a.sourceTokens.length;c<d;c++){if(b=a.sourceTokens[c],b[0]==H.AT_RULE&&K(b[1]))return a.sourceTokens.splice(0,c),q(b,a);b[0]==H.AT_RULE||b[0]==H.COMMENT?a.outputTokens.push(b):(a.outputTokens.push(b),a.afterContent=!0)}return a.sourceTokens=[],a.callback(a.outputTokens)}function q(a,b){var c=x(a[1]),d=c[0],e=c[1],f=a[2];return L(d)?r(d,e,f,b):s(d,e,f,b)}function r(a,b,c,e){function f(f,g){return f?(e.errors.push('Broken @import declaration of "'+a+'" - '+f),d.nextTick(function(){e.outputTokens=e.outputTokens.concat(e.sourceTokens.slice(0,1)),e.sourceTokens=e.sourceTokens.slice(1),p(e)})):(e.inline=e.externalContext.options.inline,e.isRemote=!0,e.externalContext.source=h,e.externalContext.sourcesContent[a]=g,e.externalContext.stats.originalSize+=g.length,m(g,e.externalContext,e,function(a){return a=t(a,b,c),e.outputTokens=e.outputTokens.concat(a),e.sourceTokens=e.sourceTokens.slice(1),p(e)}))}var g=y(a,!0,e.inline),h=a,i=a in e.externalContext.sourcesContent,j=!J(a);return e.inlinedStylesheets.indexOf(a)>-1?(e.warnings.push('Ignoring remote @import of "'+a+'" as it has already been imported.'),e.sourceTokens=e.sourceTokens.slice(1),p(e)):e.localOnly&&e.afterContent?(e.warnings.push('Ignoring remote @import of "'+a+'" as no callback given and after other content.'),e.sourceTokens=e.sourceTokens.slice(1),p(e)):j?(e.warnings.push('Skipping remote @import of "'+a+'" as no protocol given.'),e.outputTokens=e.outputTokens.concat(e.sourceTokens.slice(0,1)),e.sourceTokens=e.sourceTokens.slice(1),p(e)):e.localOnly&&!i?(e.warnings.push('Skipping remote @import of "'+a+'" as no callback given.'),e.outputTokens=e.outputTokens.concat(e.sourceTokens.slice(0,1)),e.sourceTokens=e.sourceTokens.slice(1),p(e)):!g&&e.afterContent?(e.warnings.push('Ignoring remote @import of "'+a+'" as resource is not allowed and after other content.'),e.sourceTokens=e.sourceTokens.slice(1),p(e)):g?(e.inlinedStylesheets.push(a),i?f(null,e.externalContext.sourcesContent[a]):A(a,e.inlineRequest,e.inlineTimeout,f)):(e.warnings.push('Skipping remote @import of "'+a+'" as resource is not allowed.'),e.outputTokens=e.outputTokens.concat(e.sourceTokens.slice(0,1)),e.sourceTokens=e.sourceTokens.slice(1),p(e))}function s(a,b,c,d){var e,f,g=v.resolve(""),h=v.isAbsolute(a)?v.resolve(g,"/"==a[0]?a.substring(1):a):v.resolve(d.rebaseTo,a),i=v.relative(g,h),j=y(a,!1,d.inline),k=B(i),l=k in d.externalContext.sourcesContent;return d.inlinedStylesheets.indexOf(h)>-1?d.warnings.push('Ignoring local @import of "'+a+'" as it has already been imported.'):l||u.existsSync(h)&&u.statSync(h).isFile()?!j&&d.afterContent?d.warnings.push('Ignoring local @import of "'+a+'" as resource is not allowed and after other content.'):d.afterContent?d.warnings.push('Ignoring local @import of "'+a+'" as after other content.'):j?(e=l?d.externalContext.sourcesContent[k]:u.readFileSync(h,"utf-8"),d.inlinedStylesheets.push(h),d.inline=d.externalContext.options.inline,d.externalContext.source=k,d.externalContext.sourcesContent[k]=e,d.externalContext.stats.originalSize+=e.length,f=m(e,d.externalContext,d,function(a){return a}),f=t(f,b,c),d.outputTokens=d.outputTokens.concat(f)):(d.warnings.push('Skipping local @import of "'+a+'" as resource is not allowed.'),d.outputTokens=d.outputTokens.concat(d.sourceTokens.slice(0,1))):d.errors.push('Ignoring local @import of "'+a+'" as resource is missing.'),
-d.sourceTokens=d.sourceTokens.slice(1),p(d)}function t(a,b,c){return b?[[H.NESTED_BLOCK,[[H.NESTED_BLOCK_SCOPE,"@media "+b,c]],a]]:a}var u=a("fs"),v=a("path"),w=a("./apply-source-maps"),x=a("./extract-import-url-and-media"),y=a("./is-allowed-resource"),z=a("./load-original-sources"),A=a("./load-remote-resource"),B=a("./normalize-path"),C=a("./rebase"),D=a("./rebase-local-map"),E=a("./rebase-remote-map"),F=a("./restore-import"),G=a("../tokenizer/tokenize"),H=a("../tokenizer/token"),I=a("../tokenizer/marker"),J=a("../utils/has-protocol"),K=a("../utils/is-import"),L=a("../utils/is-remote-resource"),M="uri:unknown";b.exports=e}).call(this,{isBuffer:a("../../../is-buffer/index.js")},a("_process"))},{"../../../is-buffer/index.js":105,"../tokenizer/marker":81,"../tokenizer/token":82,"../tokenizer/tokenize":83,"../utils/has-protocol":86,"../utils/is-import":90,"../utils/is-remote-resource":91,"./apply-source-maps":67,"./extract-import-url-and-media":68,"./is-allowed-resource":70,"./load-original-sources":71,"./load-remote-resource":72,"./normalize-path":74,"./rebase":78,"./rebase-local-map":76,"./rebase-remote-map":77,"./restore-import":79,_process:111,fs:3,path:109}],76:[function(a,b,c){function d(a,b,c){var d=e.resolve(""),f=e.resolve(d,b),g=e.dirname(f);return a.sources=a.sources.map(function(a){return e.relative(c,e.resolve(g,a))}),a}var e=a("path");b.exports=d},{path:109}],77:[function(a,b,c){function d(a,b){var c=e.dirname(b);return a.sources=a.sources.map(function(a){return f.resolve(c,a)}),a}var e=a("path"),f=a("url");b.exports=d},{path:109,url:158}],78:[function(a,b,c){function d(a,b,c,d){return b?e(a,c,d):f(a,c,d)}function e(a,b,c){var d,f,j;for(f=0,j=a.length;f<j;f++)switch(d=a[f],d[0]){case m.AT_RULE:g(d,b,c);break;case m.AT_RULE_BLOCK:i(d[2],b,c);break;case m.COMMENT:h(d,c);break;case m.NESTED_BLOCK:e(d[2],b,c);break;case m.RULE:i(d[2],b,c)}return a}function f(a,b,c){var d,e,f;for(e=0,f=a.length;e<f;e++)switch(d=a[e],d[0]){case m.AT_RULE:g(d,b,c)}return a}function g(a,b,c){if(n(a[1])){var d=j(a[1]),e=l(d[0],c),f=d[1];a[1]=k(e,f)}}function h(a,b){var c=o.exec(a[1]);c&&c[1].indexOf("data:")===-1&&(a[1]=a[1].replace(c[1],l(c[1],b,!0)))}function i(a,b,c){var d,e,f,g,h,i;for(f=0,g=a.length;f<g;f++)for(d=a[f],h=2,i=d.length;h<i;h++)e=d[h][1],b.isValidUrl(e)&&(d[h][1]=l(e,c))}var j=a("./extract-import-url-and-media"),k=a("./restore-import"),l=a("./rewrite-url"),m=a("../tokenizer/token"),n=a("../utils/is-import"),o=/^\/\*# sourceMappingURL=(\S+) \*\/$/;b.exports=d},{"../tokenizer/token":82,"../utils/is-import":90,"./extract-import-url-and-media":68,"./restore-import":79,"./rewrite-url":80}],79:[function(a,b,c){function d(a,b){return("@import "+a+" "+b).trim()}b.exports=d},{}],80:[function(a,b,c){(function(c){function d(a,b){return b?e(a)&&!h(b.toBase)?a:h(a)||f(a)||g(a)?a:i(a)?"'"+a+"'":h(b.toBase)?r.resolve(b.toBase,a):l(b.absolute?j(a,b):k(a,b)):a}function e(a){return q.isAbsolute(a)}function f(a){return"#"==a[0]}function g(a){return/^\w+:\w+/.test(a)}function h(a){return/^[^:]+?:\/\//.test(a)||0===a.indexOf("//")}function i(a){return 0===a.indexOf("data:")}function j(a,b){return q.resolve(q.join(b.fromBase||"",a)).replace(b.toBase,"")}function k(a,b){return q.relative(b.toBase,q.join(b.fromBase||"",a))}function l(a){return C?a.replace(/\\/g,"/"):a}function m(a){return a.indexOf(t)>-1?s:a.indexOf(s)>-1?t:n(a)||o(a)?t:""}function n(a){return B.test(a)}function o(a){return y.test(a)}function p(a,b,c){var e=a.replace(z,"").replace(A,"").trim(),f=e.replace(w,"").replace(x,"").trim(),g=e[0]==t||e[0]==s?e[0]:m(f);return c?d(f,b):u+g+d(f,b)+g+v}var q=a("path"),r=a("url"),s='"',t="'",u="url(",v=")",w=/^["']/,x=/["']$/,y=/[\(\)]/,z=/^url\(/i,A=/\)$/,B=/\s/,C="win32"==c.platform;b.exports=p}).call(this,a("_process"))},{_process:111,path:109,url:158}],81:[function(a,b,c){var d={ASTERISK:"*",AT:"@",BACK_SLASH:"\\",CLOSE_CURLY_BRACKET:"}",CLOSE_ROUND_BRACKET:")",CLOSE_SQUARE_BRACKET:"]",COLON:":",COMMA:",",DOUBLE_QUOTE:'"',EXCLAMATION:"!",FORWARD_SLASH:"/",NEW_LINE_NIX:"\n",NEW_LINE_WIN:"\r",OPEN_CURLY_BRACKET:"{",OPEN_ROUND_BRACKET:"(",OPEN_SQUARE_BRACKET:"[",SEMICOLON:";",SINGLE_QUOTE:"'",SPACE:" ",TAB:"\t",UNDERSCORE:"_"};b.exports=d},{}],82:[function(a,b,c){var d={AT_RULE:"at-rule",AT_RULE_BLOCK:"at-rule-block",AT_RULE_BLOCK_SCOPE:"at-rule-block-scope",COMMENT:"comment",NESTED_BLOCK:"nested-block",NESTED_BLOCK_SCOPE:"nested-block-scope",PROPERTY:"property",PROPERTY_BLOCK:"property-block",PROPERTY_NAME:"property-name",PROPERTY_VALUE:"property-value",RULE:"rule",RULE_SCOPE:"rule-scope"};b.exports=d},{}],83:[function(a,b,c){function d(a,b){var c={level:l.BLOCK,position:{source:b.source||void 0,line:1,column:0,index:0}};return e(a,b,c,!1)}function e(a,b,c,d){for(var m,n,o,q,r,s,t,u,v,w,x,y,z=[],A=z,B=[],C=[],D=c.level,E=[],F=[],G=[],H=0,I=!1,J=!1,K=!1,L=!1,M=!1,N=c.position;N.index<a.length;N.index++){var O=a[N.index];if(s=D==l.SINGLE_QUOTE||D==l.DOUBLE_QUOTE,t=O==i.SPACE||O==i.TAB,u=O==i.NEW_LINE_NIX,v=O==i.NEW_LINE_NIX&&a[N.index-1]==i.NEW_LINE_WIN,w=!J&&D!=l.COMMENT&&!s&&O==i.ASTERISK&&a[N.index-1]==i.FORWARD_SLASH,x=!I&&D==l.COMMENT&&O==i.FORWARD_SLASH&&a[N.index-1]==i.ASTERISK,q=0===F.length?[N.line,N.column,N.source]:q,y)F.push(O);else if(x||D!=l.COMMENT)if(w&&(D==l.BLOCK||D==l.RULE)&&F.length>1)C.push(q),F.push(O),G.push(F.slice(0,F.length-2)),F=F.slice(F.length-2),q=[N.line,N.column-1,N.source],E.push(D),D=l.COMMENT;else if(w)E.push(D),D=l.COMMENT,F.push(O);else if(x)r=F.join("").trim()+O,m=[j.COMMENT,r,[f(q,r,b)]],A.push(m),D=E.pop(),q=C.pop()||null,F=G.pop()||[];else if(O!=i.SINGLE_QUOTE||s)if(O==i.SINGLE_QUOTE&&D==l.SINGLE_QUOTE)D=E.pop(),F.push(O);else if(O!=i.DOUBLE_QUOTE||s)if(O==i.DOUBLE_QUOTE&&D==l.DOUBLE_QUOTE)D=E.pop(),F.push(O);else if(!w&&!x&&O!=i.CLOSE_ROUND_BRACKET&&O!=i.OPEN_ROUND_BRACKET&&D!=l.COMMENT&&!s&&H>0)F.push(O);else if(O!=i.OPEN_ROUND_BRACKET||s||D==l.COMMENT||L)if(O!=i.CLOSE_ROUND_BRACKET||s||D==l.COMMENT||L)if(O==i.SEMICOLON&&D==l.BLOCK&&F[0]==i.AT)r=F.join("").trim(),z.push([j.AT_RULE,r,[f(q,r,b)]]),F=[];else if(O==i.COMMA&&D==l.BLOCK&&n)r=F.join("").trim(),n[1].push([h(n[0]),r,[f(q,r,b,n[1].length)]]),F=[];else if(O==i.COMMA&&D==l.BLOCK&&g(F)==j.AT_RULE)F.push(O);else if(O==i.COMMA&&D==l.BLOCK)n=[g(F),[],[]],r=F.join("").trim(),n[1].push([h(n[0]),r,[f(q,r,b,0)]]),F=[];else if(O==i.OPEN_CURLY_BRACKET&&D==l.BLOCK&&n&&n[0]==j.NESTED_BLOCK)r=F.join("").trim(),n[1].push([j.NESTED_BLOCK_SCOPE,r,[f(q,r,b)]]),z.push(n),E.push(D),N.column++,N.index++,F=[],n[2]=e(a,b,c,!0),n=null;else if(O==i.OPEN_CURLY_BRACKET&&D==l.BLOCK&&g(F)==j.NESTED_BLOCK)r=F.join("").trim(),n=n||[j.NESTED_BLOCK,[],[]],n[1].push([j.NESTED_BLOCK_SCOPE,r,[f(q,r,b)]]),z.push(n),E.push(D),N.column++,N.index++,F=[],n[2]=e(a,b,c,!0),n=null;else if(O==i.OPEN_CURLY_BRACKET&&D==l.BLOCK)r=F.join("").trim(),n=n||[g(F),[],[]],n[1].push([h(n[0]),r,[f(q,r,b,n[1].length)]]),A=n[2],z.push(n),E.push(D),D=l.RULE,F=[];else if(O==i.OPEN_CURLY_BRACKET&&D==l.RULE&&L)B.push(n),n=[j.PROPERTY_BLOCK,[]],o.push(n),A=n[1],E.push(D),D=l.RULE,L=!1;else if(O!=i.COLON||D!=l.RULE||L)if(O==i.SEMICOLON&&D==l.RULE&&o&&B.length>0&&F.length>0&&F[0]==i.AT)r=F.join("").trim(),n[1].push([j.AT_RULE,r,[f(q,r,b)]]),F=[];else if(O==i.SEMICOLON&&D==l.RULE&&o&&F.length>0)r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),o=null,L=!1,F=[];else if(O==i.SEMICOLON&&D==l.RULE&&o&&0===F.length)o=null,L=!1;else if(O==i.SEMICOLON&&D==l.RULE&&F.length>0&&F[0]==i.AT)r=F.join(""),A.push([j.AT_RULE,r,[f(q,r,b)]]),L=!1,F=[];else if(O==i.SEMICOLON&&D==l.RULE&&M)M=!1,F=[];else if(O==i.SEMICOLON&&D==l.RULE&&0===F.length);else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&o&&L&&F.length>0&&B.length>0)r=F.join(""),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),o=null,n=B.pop(),A=n[2],D=E.pop(),L=!1,F=[];else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&o&&F.length>0&&F[0]==i.AT&&B.length>0)r=F.join(""),n[1].push([j.AT_RULE,r,[f(q,r,b)]]),o=null,n=B.pop(),A=n[2],D=E.pop(),L=!1,F=[];else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&o&&B.length>0)o=null,n=B.pop(),A=n[2],D=E.pop(),L=!1;else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&o&&F.length>0)r=F.join(""),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),o=null,n=B.pop(),A=z,D=E.pop(),L=!1,F=[];else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&F.length>0&&F[0]==i.AT)o=null,n=null,r=F.join("").trim(),A.push([j.AT_RULE,r,[f(q,r,b)]]),A=z,D=E.pop(),L=!1,F=[];else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&E[E.length-1]==l.RULE)o=null,n=B.pop(),A=n[2],D=E.pop(),L=!1,M=!0,F=[];else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE)o=null,n=null,A=z,D=E.pop(),L=!1;else if(O==i.CLOSE_CURLY_BRACKET&&D==l.BLOCK&&!d&&N.index<=a.length-1)b.warnings.push("Unexpected '}' at "+k([N.line,N.column,N.source])+"."),F.push(O);else{if(O==i.CLOSE_CURLY_BRACKET&&D==l.BLOCK)break;O==i.OPEN_ROUND_BRACKET&&D==l.RULE&&L?(F.push(O),H++):O==i.CLOSE_ROUND_BRACKET&&D==l.RULE&&L&&1==H?(F.push(O),r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),H--,F=[]):O==i.CLOSE_ROUND_BRACKET&&D==l.RULE&&L?(F.push(O),H--):O==i.FORWARD_SLASH&&a[N.index+1]!=i.ASTERISK&&D==l.RULE&&L&&F.length>0?(r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),o.push([j.PROPERTY_VALUE,O,[[N.line,N.column,N.source]]]),F=[]):O==i.FORWARD_SLASH&&a[N.index+1]!=i.ASTERISK&&D==l.RULE&&L?(o.push([j.PROPERTY_VALUE,O,[[N.line,N.column,N.source]]]),F=[]):O==i.COMMA&&D==l.RULE&&L&&F.length>0?(r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),o.push([j.PROPERTY_VALUE,O,[[N.line,N.column,N.source]]]),F=[]):O==i.COMMA&&D==l.RULE&&L?(o.push([j.PROPERTY_VALUE,O,[[N.line,N.column,N.source]]]),F=[]):(t||u&&!v)&&D==l.RULE&&L&&o&&F.length>0?(r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),F=[]):v&&D==l.RULE&&L&&o&&F.length>1?(r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),F=[]):v&&D==l.RULE&&L?F=[]:1==F.length&&v?F.pop():(F.length>0||!t&&!u&&!v)&&F.push(O)}else r=F.join("").trim(),o=[j.PROPERTY,[j.PROPERTY_NAME,r,[f(q,r,b)]]],A.push(o),L=!0,F=[];else F.push(O),H--;else F.push(O),H++;else E.push(D),D=l.DOUBLE_QUOTE,F.push(O);else E.push(D),D=l.SINGLE_QUOTE,F.push(O);else F.push(O);K=y,y=!K&&O==i.BACK_SLASH,I=w,J=x,N.line=v||u?N.line+1:N.line,N.column=v||u?0:N.column+1}return L&&b.warnings.push("Missing '}' at "+k([N.line,N.column,N.source])+"."),L&&F.length>0&&(r=F.join("").replace(p,""),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),F=[]),F.length>0&&b.warnings.push("Invalid character(s) '"+F.join("")+"' at "+k(q)+". Ignoring."),z}function f(a,b,c,d){var e=a[2];return c.inputSourceMapTracker.isTracking(e)?c.inputSourceMapTracker.originalPositionFor(a,b.length,d):a}function g(a){var b=a[0]==i.AT||a[0]==i.UNDERSCORE,c=a.join("").split(o)[0];return b&&n.indexOf(c)>-1?j.NESTED_BLOCK:b&&m.indexOf(c)>-1?j.AT_RULE:b?j.AT_RULE_BLOCK:j.RULE}function h(a){return a==j.RULE?j.RULE_SCOPE:a==j.NESTED_BLOCK?j.NESTED_BLOCK_SCOPE:a==j.AT_RULE_BLOCK?j.AT_RULE_BLOCK_SCOPE:void 0}var i=a("./marker"),j=a("./token"),k=a("../utils/format-position"),l={BLOCK:"block",COMMENT:"comment",DOUBLE_QUOTE:"double-quote",RULE:"rule",SINGLE_QUOTE:"single-quote"},m=["@charset","@import"],n=["@-moz-document","@document","@-moz-keyframes","@-ms-keyframes","@-o-keyframes","@-webkit-keyframes","@keyframes","@media","@supports"],o=/[\s\(]/,p=/[\s|\}]*$/;b.exports=d},{"../utils/format-position":85,"./marker":81,"./token":82}],84:[function(a,b,c){function d(a){for(var b=a.slice(0),c=0,e=b.length;c<e;c++)Array.isArray(b[c])&&(b[c]=d(b[c]));return b}b.exports=d},{}],85:[function(a,b,c){function d(a){var b=a[0],c=a[1],d=a[2];return d?d+":"+b+":"+c:b+":"+c}b.exports=d},{}],86:[function(a,b,c){function d(a){return!e.test(a)}var e=/^\/\//;b.exports=d},{}],87:[function(a,b,c){function d(a){return e.test(a)}var e=/^data:(\S*?)?(;charset=[^;]+)?(;[^,]+?)?,(.+)/;b.exports=d},{}],88:[function(a,b,c){function d(a){return e.test(a)}var e=/^http:\/\//;b.exports=d},{}],89:[function(a,b,c){function d(a){return e.test(a)}var e=/^https:\/\//;b.exports=d},{}],90:[function(a,b,c){function d(a){return e.test(a)}var e=/^@import/i;b.exports=d},{}],91:[function(a,b,c){function d(a){return e.test(a)}var e=/^(\w+:\/\/|\/\/)/;b.exports=d},{}],92:[function(a,b,c){function d(a,b){var c,d,g,h,i=(""+a).split(f).map(e),j=(""+b).split(f).map(e),k=Math.min(i.length,j.length);for(g=0,h=k;g<h;g++)if(c=i[g],d=j[g],c!=d)return c>d?1:-1;return i.length>j.length?1:i.length==j.length?0:-1}function e(a){return""+parseInt(a)==a?parseInt(a):a}var f=/([0-9]+)/;b.exports=d},{}],93:[function(a,b,c){function d(a,b){var c,e,f,g={};for(c in a)f=a[c],Array.isArray(f)?g[c]=f.slice(0):"object"==typeof f&&null!==f?g[c]=d(f,{}):g[c]=f;for(e in b)f=b[e],e in g&&Array.isArray(f)?g[e]=f.slice(0):e in g&&"object"==typeof f&&null!==f?g[e]=d(g[e],f):g[e]=f;return g}b.exports=d},{}],94:[function(a,b,c){function d(a,b){var c,d,f=e.OPEN_ROUND_BRACKET,g=e.CLOSE_ROUND_BRACKET,h=0,i=0,j=0,k=a.length,l=[];if(a.indexOf(b)==-1)return[a];if(a.indexOf(f)==-1)return a.split(b);for(;i<k;)a[i]==f?h++:a[i]==g&&h--,0===h&&i>0&&i+1<k&&a[i]==b&&(l.push(a.substring(j,i)),j=i+1),i++;return j<i+1&&(c=a.substring(j),d=c[c.length-1],d==b&&(c=c.substring(0,c.length-1)),l.push(c)),l}var e=a("../tokenizer/marker");b.exports=d},{"../tokenizer/marker":81}],95:[function(a,b,c){function d(a){return"background"==a[1][1]||"transform"==a[1][1]||"src"==a[1][1]}function e(a,b){return a[b][1][a[b][1].length-1]==C.CLOSE_ROUND_BRACKET}function f(a,b){return a[b][1]==C.COMMA}function g(a,b){return a[b][1]==C.FORWARD_SLASH}function h(a,b){return a[b+1]&&a[b+1][1]==C.COMMA}function i(a,b){return a[b+1]&&a[b+1][1]==C.FORWARD_SLASH}function j(a){return"filter"==a[1][1]||"-ms-filter"==a[1][1]}function k(a,b,c){return!a.spaceAfterClosingBrace&&d(b)&&e(b,c)||i(b,c)||g(b,c)||h(b,c)||f(b,c)}function l(a,b){for(var c=a.store,d=0,e=b.length;d<e;d++)c(a,b[d]),d<e-1&&c(a,w(a))}function m(a,b){for(var c=n(b),d=0,e=b.length;d<e;d++)o(a,b,d,c)}function n(a){for(var b=a.length-1;b>=0&&a[b][0]==D.COMMENT;b--);return b}function o(a,b,c,d){var e=a.store,f=b[c],g=f[2][0]==D.PROPERTY_BLOCK,h=c<d||g,i=c===d;switch(f[0]){case D.AT_RULE:e(a,f),e(a,c<d?v(a,A.AfterProperty,!1):z);break;case D.COMMENT:e(a,f);break;case D.PROPERTY:e(a,f[1]),e(a,u(a)),p(a,f),e(a,h?v(a,A.AfterProperty,i):z)}}function p(a,b){var c,d,e=a.store;if(b[2][0]==D.PROPERTY_BLOCK)e(a,s(a,A.AfterBlockBegins,!1)),m(a,b[2][1]),e(a,t(a,A.AfterBlockEnds,!1,!0));else for(c=2,d=b.length;c<d;c++)e(a,b[c]),c<d-1&&(j(b)||!k(a,b,c))&&e(a,C.SPACE)}function q(a,b){return a.format&&a.format.breaks[b]}function r(a,b){return a.format&&a.format.spaces[b]}function s(a,b,c){return a.format?(a.indentBy+=a.format.indentBy,a.indentWith=a.format.indentWith.repeat(a.indentBy),(c&&r(a,B.BeforeBlockBegins)?C.SPACE:z)+C.OPEN_CURLY_BRACKET+(q(a,b)?y:z)+a.indentWith):C.OPEN_CURLY_BRACKET}function t(a,b,c,d){return a.format?(a.indentBy-=a.format.indentBy,a.indentWith=a.format.indentWith.repeat(a.indentBy),(q(a,A.AfterProperty)||c&&q(a,A.BeforeBlockEnds)?y:z)+a.indentWith+C.CLOSE_CURLY_BRACKET+(d?z:(q(a,b)?y:z)+a.indentWith)):C.CLOSE_CURLY_BRACKET}function u(a){return a.format?C.COLON+(r(a,B.BeforeValue)?C.SPACE:z):C.COLON}function v(a,b,c){return a.format?C.SEMICOLON+(c||!q(a,b)?z:y+a.indentWith):C.SEMICOLON}function w(a){return a.format?C.COMMA+(q(a,A.BetweenSelectors)?y:z)+a.indentWith:C.COMMA}function x(a,b){var c,d,e,f,g=a.store;for(e=0,f=b.length;e<f;e++)switch(c=b[e],d=e==f-1,c[0]){case D.AT_RULE:g(a,c),g(a,v(a,A.AfterAtRule,d));break;case D.AT_RULE_BLOCK:l(a,c[1]),g(a,s(a,A.AfterRuleBegins,!0)),m(a,c[2]),g(a,t(a,A.AfterRuleEnds,!1,d));break;case D.NESTED_BLOCK:l(a,c[1]),g(a,s(a,A.AfterBlockBegins,!0)),x(a,c[2]),g(a,t(a,A.AfterBlockEnds,!0,d));break;case D.COMMENT:g(a,c),g(a,q(a,A.AfterComment)?y:z);break;case D.RULE:l(a,c[1]),g(a,s(a,A.AfterRuleBegins,!0)),m(a,c[2]),g(a,t(a,A.AfterRuleEnds,!1,d))}}var y=a("os").EOL,z="",A=a("../options/format").Breaks,B=a("../options/format").Spaces,C=a("../tokenizer/marker"),D=a("../tokenizer/token");b.exports={all:x,body:m,property:o,rules:l,value:p}},{"../options/format":59,"../tokenizer/marker":81,"../tokenizer/token":82,os:108}],96:[function(a,b,c){function d(a,b){a.output.push("string"==typeof b?b:b[1])}function e(){var a={output:[],store:d};return a}function f(a){var b=e();return k.all(b,a),b.output.join("")}function g(a){var b=e();return k.body(b,a),b.output.join("")}function h(a,b){var c=e();return k.property(c,a,b,!0),c.output.join("")}function i(a){var b=e();return k.rules(b,a),b.output.join("")}function j(a){var b=e();return k.value(b,a),b.output.join("")}var k=a("./helpers");b.exports={all:f,body:g,property:h,rules:i,value:j}},{"./helpers":95}],97:[function(a,b,c){function d(a,b){var c="string"==typeof b?b:b[1],d=a.wrap;d(a,c),f(a,c),a.output.push(c)}function e(a,b){a.column+b.length>a.format.wrapAt&&(f(a,i),a.output.push(i))}function f(a,b){var c=b.split("\n");a.line+=c.length-1,a.column=c.length>1?0:a.column+c.pop().length}function g(a,b){var c={column:0,format:b.options.format,indentBy:0,indentWith:"",line:1,output:[],spaceAfterClosingBrace:b.options.compatibility.properties.spaceAfterClosingBrace,store:d,wrap:b.options.format.wrapAt?e:function(){}};return h(c,a),{styles:c.output.join("")}}var h=a("./helpers").all,i=a("os").EOL;b.exports=g},{"./helpers":95,os:108}],98:[function(a,b,c){(function(c){function d(a,b){var c="string"==typeof b,d=c?b:b[1],e=c?null:b[2],g=a.wrap;g(a,d),f(a,d,e),a.output.push(d)}function e(a,b){a.column+b.length>a.format.wrapAt&&(f(a,l,!1),a.output.push(l))}function f(a,b,c){var d=b.split("\n");c&&g(a,c),a.line+=d.length-1,a.column=d.length>1?0:a.column+d.pop().length}function g(a,b){for(var c=0,d=b.length;c<d;c++)h(a,b[c])}function h(a,b){var c=b[0],d=b[1],e=b[2],f=e,g=f||p;n&&f&&!m(f)&&(g=f.replace(o,q)),a.outputMap.addMapping({generated:{line:a.line,column:a.column},source:g,original:{line:c,column:d}}),a.inlineSources&&e in a.sourcesContent&&a.outputMap.setSourceContent(g,a.sourcesContent[e])}function i(a,b){var c={column:0,format:b.options.format,indentBy:0,indentWith:"",inlineSources:b.options.sourceMapInlineSources,line:1,output:[],outputMap:new j,sourcesContent:b.sourcesContent,spaceAfterClosingBrace:b.options.compatibility.properties.spaceAfterClosingBrace,store:d,wrap:b.options.format.wrapAt?e:function(){}};return k(c,a),{sourceMap:c.outputMap,styles:c.output.join("")}}var j=a("source-map").SourceMapGenerator,k=a("./helpers").all,l=a("os").EOL,m=a("../utils/is-remote-resource"),n="win32"==c.platform,o=/\//g,p="$stdin",q="\\";b.exports=i}).call(this,a("_process"))},{"../utils/is-remote-resource":91,"./helpers":95,_process:111,os:108,"source-map":150}],99:[function(a,b,c){(function(a){function b(a){return Array.isArray?Array.isArray(a):"[object Array]"===q(a)}function d(a){return"boolean"==typeof a}function e(a){return null===a}function f(a){return null==a}function g(a){return"number"==typeof a}function h(a){return"string"==typeof a}function i(a){return"symbol"==typeof a}function j(a){return void 0===a}function k(a){return"[object RegExp]"===q(a)}function l(a){return"object"==typeof a&&null!==a}function m(a){return"[object Date]"===q(a)}function n(a){return"[object Error]"===q(a)||a instanceof Error}function o(a){return"function"==typeof a}function p(a){return null===a||"boolean"==typeof a||"number"==typeof a||"string"==typeof a||"symbol"==typeof a||"undefined"==typeof a}function q(a){return Object.prototype.toString.call(a)}c.isArray=b,c.isBoolean=d,c.isNull=e,c.isNullOrUndefined=f,c.isNumber=g,c.isString=h,c.isSymbol=i,c.isUndefined=j,c.isRegExp=k,c.isObject=l,c.isDate=m,c.isError=n,c.isFunction=o,c.isPrimitive=p,c.isBuffer=a.isBuffer}).call(this,{isBuffer:a("../../is-buffer/index.js")})},{"../../is-buffer/index.js":105}],100:[function(a,b,c){function d(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function e(a){return"function"==typeof a}function f(a){return"number"==typeof a}function g(a){return"object"==typeof a&&null!==a}function h(a){return void 0===a}b.exports=d,d.EventEmitter=d,d.prototype._events=void 0,d.prototype._maxListeners=void 0,d.defaultMaxListeners=10,d.prototype.setMaxListeners=function(a){if(!f(a)||a<0||isNaN(a))throw TypeError("n must be a positive number");return this._maxListeners=a,this},d.prototype.emit=function(a){var b,c,d,f,i,j;if(this._events||(this._events={}),"error"===a&&(!this._events.error||g(this._events.error)&&!this._events.error.length)){if(b=arguments[1],b instanceof Error)throw b;var k=new Error('Uncaught, unspecified "error" event. ('+b+")");throw k.context=b,k}if(c=this._events[a],h(c))return!1;if(e(c))switch(arguments.length){case 1:c.call(this);break;case 2:c.call(this,arguments[1]);break;case 3:c.call(this,arguments[1],arguments[2]);break;default:f=Array.prototype.slice.call(arguments,1),c.apply(this,f)}else if(g(c))for(f=Array.prototype.slice.call(arguments,1),j=c.slice(),d=j.length,i=0;i<d;i++)j[i].apply(this,f);return!0},d.prototype.addListener=function(a,b){var c;if(!e(b))throw TypeError("listener must be a function");return this._events||(this._events={}),this._events.newListener&&this.emit("newListener",a,e(b.listener)?b.listener:b),this._events[a]?g(this._events[a])?this._events[a].push(b):this._events[a]=[this._events[a],b]:this._events[a]=b,g(this._events[a])&&!this._events[a].warned&&(c=h(this._maxListeners)?d.defaultMaxListeners:this._maxListeners,c&&c>0&&this._events[a].length>c&&(this._events[a].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[a].length),"function"==typeof console.trace&&console.trace())),this},d.prototype.on=d.prototype.addListener,d.prototype.once=function(a,b){function c(){this.removeListener(a,c),d||(d=!0,b.apply(this,arguments))}if(!e(b))throw TypeError("listener must be a function");var d=!1;return c.listener=b,this.on(a,c),this},d.prototype.removeListener=function(a,b){var c,d,f,h;if(!e(b))throw TypeError("listener must be a function");if(!this._events||!this._events[a])return this;if(c=this._events[a],f=c.length,d=-1,c===b||e(c.listener)&&c.listener===b)delete this._events[a],this._events.removeListener&&this.emit("removeListener",a,b);else if(g(c)){for(h=f;h-- >0;)if(c[h]===b||c[h].listener&&c[h].listener===b){d=h;break}if(d<0)return this;1===c.length?(c.length=0,delete this._events[a]):c.splice(d,1),this._events.removeListener&&this.emit("removeListener",a,b)}return this},d.prototype.removeAllListeners=function(a){var b,c;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[a]&&delete this._events[a],this;if(0===arguments.length){for(b in this._events)"removeListener"!==b&&this.removeAllListeners(b);return this.removeAllListeners("removeListener"),this._events={},this}if(c=this._events[a],e(c))this.removeListener(a,c);else if(c)for(;c.length;)this.removeListener(a,c[c.length-1]);return delete this._events[a],this},d.prototype.listeners=function(a){var b;return b=this._events&&this._events[a]?e(this._events[a])?[this._events[a]]:this._events[a].slice():[]},d.prototype.listenerCount=function(a){if(this._events){var b=this._events[a];if(e(b))return 1;if(b)return b.length}return 0},d.listenerCount=function(a,b){return a.listenerCount(b)}},{}],101:[function(a,b,c){(function(a){!function(d){var e="object"==typeof c&&c,f="object"==typeof b&&b&&b.exports==e&&b,g="object"==typeof a&&a;g.global!==g&&g.window!==g||(d=g);var h=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,i=/[\x01-\x7F]/g,j=/[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g,k=/<\u20D2|=\u20E5|>\u20D2|\u205F\u200A|\u219D\u0338|\u2202\u0338|\u2220\u20D2|\u2229\uFE00|\u222A\uFE00|\u223C\u20D2|\u223D\u0331|\u223E\u0333|\u2242\u0338|\u224B\u0338|\u224D\u20D2|\u224E\u0338|\u224F\u0338|\u2250\u0338|\u2261\u20E5|\u2264\u20D2|\u2265\u20D2|\u2266\u0338|\u2267\u0338|\u2268\uFE00|\u2269\uFE00|\u226A\u0338|\u226A\u20D2|\u226B\u0338|\u226B\u20D2|\u227F\u0338|\u2282\u20D2|\u2283\u20D2|\u228A\uFE00|\u228B\uFE00|\u228F\u0338|\u2290\u0338|\u2293\uFE00|\u2294\uFE00|\u22B4\u20D2|\u22B5\u20D2|\u22D8\u0338|\u22D9\u0338|\u22DA\uFE00|\u22DB\uFE00|\u22F5\u0338|\u22F9\u0338|\u2933\u0338|\u29CF\u0338|\u29D0\u0338|\u2A6D\u0338|\u2A70\u0338|\u2A7D\u0338|\u2A7E\u0338|\u2AA1\u0338|\u2AA2\u0338|\u2AAC\uFE00|\u2AAD\uFE00|\u2AAF\u0338|\u2AB0\u0338|\u2AC5\u0338|\u2AC6\u0338|\u2ACB\uFE00|\u2ACC\uFE00|\u2AFD\u20E5|[\xA0-\u0113\u0116-\u0122\u0124-\u012B\u012E-\u014D\u0150-\u017E\u0192\u01B5\u01F5\u0237\u02C6\u02C7\u02D8-\u02DD\u0311\u0391-\u03A1\u03A3-\u03A9\u03B1-\u03C9\u03D1\u03D2\u03D5\u03D6\u03DC\u03DD\u03F0\u03F1\u03F5\u03F6\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E\u045F\u2002-\u2005\u2007-\u2010\u2013-\u2016\u2018-\u201A\u201C-\u201E\u2020-\u2022\u2025\u2026\u2030-\u2035\u2039\u203A\u203E\u2041\u2043\u2044\u204F\u2057\u205F-\u2063\u20AC\u20DB\u20DC\u2102\u2105\u210A-\u2113\u2115-\u211E\u2122\u2124\u2127-\u2129\u212C\u212D\u212F-\u2131\u2133-\u2138\u2145-\u2148\u2153-\u215E\u2190-\u219B\u219D-\u21A7\u21A9-\u21AE\u21B0-\u21B3\u21B5-\u21B7\u21BA-\u21DB\u21DD\u21E4\u21E5\u21F5\u21FD-\u2205\u2207-\u2209\u220B\u220C\u220F-\u2214\u2216-\u2218\u221A\u221D-\u2238\u223A-\u2257\u2259\u225A\u225C\u225F-\u2262\u2264-\u228B\u228D-\u229B\u229D-\u22A5\u22A7-\u22B0\u22B2-\u22BB\u22BD-\u22DB\u22DE-\u22E3\u22E6-\u22F7\u22F9-\u22FE\u2305\u2306\u2308-\u2310\u2312\u2313\u2315\u2316\u231C-\u231F\u2322\u2323\u232D\u232E\u2336\u233D\u233F\u237C\u23B0\u23B1\u23B4-\u23B6\u23DC-\u23DF\u23E2\u23E7\u2423\u24C8\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2550-\u256C\u2580\u2584\u2588\u2591-\u2593\u25A1\u25AA\u25AB\u25AD\u25AE\u25B1\u25B3-\u25B5\u25B8\u25B9\u25BD-\u25BF\u25C2\u25C3\u25CA\u25CB\u25EC\u25EF\u25F8-\u25FC\u2605\u2606\u260E\u2640\u2642\u2660\u2663\u2665\u2666\u266A\u266D-\u266F\u2713\u2717\u2720\u2736\u2758\u2772\u2773\u27C8\u27C9\u27E6-\u27ED\u27F5-\u27FA\u27FC\u27FF\u2902-\u2905\u290C-\u2913\u2916\u2919-\u2920\u2923-\u292A\u2933\u2935-\u2939\u293C\u293D\u2945\u2948-\u294B\u294E-\u2976\u2978\u2979\u297B-\u297F\u2985\u2986\u298B-\u2996\u299A\u299C\u299D\u29A4-\u29B7\u29B9\u29BB\u29BC\u29BE-\u29C5\u29C9\u29CD-\u29D0\u29DC-\u29DE\u29E3-\u29E5\u29EB\u29F4\u29F6\u2A00-\u2A02\u2A04\u2A06\u2A0C\u2A0D\u2A10-\u2A17\u2A22-\u2A27\u2A29\u2A2A\u2A2D-\u2A31\u2A33-\u2A3C\u2A3F\u2A40\u2A42-\u2A4D\u2A50\u2A53-\u2A58\u2A5A-\u2A5D\u2A5F\u2A66\u2A6A\u2A6D-\u2A75\u2A77-\u2A9A\u2A9D-\u2AA2\u2AA4-\u2AB0\u2AB3-\u2AC8\u2ACB\u2ACC\u2ACF-\u2ADB\u2AE4\u2AE6-\u2AE9\u2AEB-\u2AF3\u2AFD\uFB00-\uFB04]|\uD835[\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDD6B]/g,l={"­":"shy","‌":"zwnj","‍":"zwj","‎":"lrm","⁣":"ic","⁢":"it","⁡":"af","‏":"rlm","​":"ZeroWidthSpace","⁠":"NoBreak","̑":"DownBreve","⃛":"tdot","⃜":"DotDot","\t":"Tab","\n":"NewLine"," ":"puncsp"," ":"MediumSpace"," ":"thinsp"," ":"hairsp"," ":"emsp13"," ":"ensp"," ":"emsp14"," ":"emsp"," ":"numsp"," ":"nbsp","  ":"ThickSpace","‾":"oline",_:"lowbar","‐":"dash","–":"ndash","—":"mdash","―":"horbar",",":"comma",";":"semi","⁏":"bsemi",":":"colon","⩴":"Colone","!":"excl","¡":"iexcl","?":"quest","¿":"iquest",".":"period","‥":"nldr","…":"mldr","·":"middot","'":"apos","‘":"lsquo","’":"rsquo","‚":"sbquo","‹":"lsaquo","›":"rsaquo",'"':"quot","“":"ldquo","”":"rdquo","„":"bdquo","«":"laquo","»":"raquo","(":"lpar",")":"rpar","[":"lsqb","]":"rsqb","{":"lcub","}":"rcub","⌈":"lceil","⌉":"rceil","⌊":"lfloor","⌋":"rfloor","⦅":"lopar","⦆":"ropar","⦋":"lbrke","⦌":"rbrke","⦍":"lbrkslu","⦎":"rbrksld","⦏":"lbrksld","⦐":"rbrkslu","⦑":"langd","⦒":"rangd","⦓":"lparlt","⦔":"rpargt","⦕":"gtlPar","⦖":"ltrPar","⟦":"lobrk","⟧":"robrk","⟨":"lang","⟩":"rang","⟪":"Lang","⟫":"Rang","⟬":"loang","⟭":"roang","❲":"lbbrk","❳":"rbbrk","‖":"Vert","§":"sect","¶":"para","@":"commat","*":"ast","/":"sol",undefined:null,"&":"amp","#":"num","%":"percnt","‰":"permil","‱":"pertenk","†":"dagger","‡":"Dagger","•":"bull","⁃":"hybull","′":"prime","″":"Prime","‴":"tprime","⁗":"qprime","‵":"bprime","⁁":"caret","`":"grave","´":"acute","˜":"tilde","^":"Hat","¯":"macr","˘":"breve","˙":"dot","¨":"die","˚":"ring","˝":"dblac","¸":"cedil","˛":"ogon","ˆ":"circ","ˇ":"caron","°":"deg","©":"copy","®":"reg","℗":"copysr","℘":"wp","℞":"rx","℧":"mho","℩":"iiota","←":"larr","↚":"nlarr","→":"rarr","↛":"nrarr","↑":"uarr","↓":"darr","↔":"harr","↮":"nharr","↕":"varr","↖":"nwarr","↗":"nearr","↘":"searr","↙":"swarr","↝":"rarrw","↝̸":"nrarrw","↞":"Larr","↟":"Uarr","↠":"Rarr","↡":"Darr","↢":"larrtl","↣":"rarrtl","↤":"mapstoleft","↥":"mapstoup","↦":"map","↧":"mapstodown","↩":"larrhk","↪":"rarrhk","↫":"larrlp","↬":"rarrlp","↭":"harrw","↰":"lsh","↱":"rsh","↲":"ldsh","↳":"rdsh","↵":"crarr","↶":"cularr","↷":"curarr","↺":"olarr","↻":"orarr","↼":"lharu","↽":"lhard","↾":"uharr","↿":"uharl","⇀":"rharu","⇁":"rhard","⇂":"dharr","⇃":"dharl","⇄":"rlarr","⇅":"udarr","⇆":"lrarr","⇇":"llarr","⇈":"uuarr","⇉":"rrarr","⇊":"ddarr","⇋":"lrhar","⇌":"rlhar","⇐":"lArr","⇍":"nlArr","⇑":"uArr","⇒":"rArr","⇏":"nrArr","⇓":"dArr","⇔":"iff","⇎":"nhArr","⇕":"vArr","⇖":"nwArr","⇗":"neArr","⇘":"seArr","⇙":"swArr","⇚":"lAarr","⇛":"rAarr","⇝":"zigrarr","⇤":"larrb","⇥":"rarrb","⇵":"duarr","⇽":"loarr","⇾":"roarr","⇿":"hoarr","∀":"forall","∁":"comp","∂":"part","∂̸":"npart","∃":"exist","∄":"nexist","∅":"empty","∇":"Del","∈":"in","∉":"notin","∋":"ni","∌":"notni","϶":"bepsi","∏":"prod","∐":"coprod","∑":"sum","+":"plus","±":"pm","÷":"div","×":"times","<":"lt","≮":"nlt","<⃒":"nvlt","=":"equals","≠":"ne","=⃥":"bne","⩵":"Equal",">":"gt","≯":"ngt",">⃒":"nvgt","¬":"not","|":"vert","¦":"brvbar","−":"minus","∓":"mp","∔":"plusdo","⁄":"frasl","∖":"setmn","∗":"lowast","∘":"compfn","√":"Sqrt","∝":"prop","∞":"infin","∟":"angrt","∠":"ang","∠⃒":"nang","∡":"angmsd","∢":"angsph","∣":"mid","∤":"nmid","∥":"par","∦":"npar","∧":"and","∨":"or","∩":"cap","∩︀":"caps","∪":"cup","∪︀":"cups","∫":"int","∬":"Int","∭":"tint","⨌":"qint","∮":"oint","∯":"Conint","∰":"Cconint","∱":"cwint","∲":"cwconint","∳":"awconint","∴":"there4","∵":"becaus","∶":"ratio","∷":"Colon","∸":"minusd","∺":"mDDot","∻":"homtht","∼":"sim","≁":"nsim","∼⃒":"nvsim","∽":"bsim","∽̱":"race","∾":"ac","∾̳":"acE","∿":"acd","≀":"wr","≂":"esim","≂̸":"nesim","≃":"sime","≄":"nsime","≅":"cong","≇":"ncong","≆":"simne","≈":"ap","≉":"nap","≊":"ape","≋":"apid","≋̸":"napid","≌":"bcong","≍":"CupCap","≭":"NotCupCap","≍⃒":"nvap","≎":"bump","≎̸":"nbump","≏":"bumpe","≏̸":"nbumpe","≐":"doteq","≐̸":"nedot","≑":"eDot","≒":"efDot","≓":"erDot","≔":"colone","≕":"ecolon","≖":"ecir","≗":"cire","≙":"wedgeq","≚":"veeeq","≜":"trie","≟":"equest","≡":"equiv","≢":"nequiv","≡⃥":"bnequiv","≤":"le","≰":"nle","≤⃒":"nvle","≥":"ge","≱":"nge","≥⃒":"nvge","≦":"lE","≦̸":"nlE","≧":"gE","≧̸":"ngE","≨︀":"lvnE","≨":"lnE","≩":"gnE","≩︀":"gvnE","≪":"ll","≪̸":"nLtv","≪⃒":"nLt","≫":"gg","≫̸":"nGtv","≫⃒":"nGt","≬":"twixt","≲":"lsim","≴":"nlsim","≳":"gsim","≵":"ngsim","≶":"lg","≸":"ntlg","≷":"gl","≹":"ntgl","≺":"pr","⊀":"npr","≻":"sc","⊁":"nsc","≼":"prcue","⋠":"nprcue","≽":"sccue","⋡":"nsccue","≾":"prsim","≿":"scsim","≿̸":"NotSucceedsTilde","⊂":"sub","⊄":"nsub","⊂⃒":"vnsub","⊃":"sup","⊅":"nsup","⊃⃒":"vnsup","⊆":"sube","⊈":"nsube","⊇":"supe","⊉":"nsupe","⊊︀":"vsubne","⊊":"subne","⊋︀":"vsupne","⊋":"supne","⊍":"cupdot","⊎":"uplus","⊏":"sqsub","⊏̸":"NotSquareSubset","⊐":"sqsup","⊐̸":"NotSquareSuperset","⊑":"sqsube","⋢":"nsqsube","⊒":"sqsupe","⋣":"nsqsupe","⊓":"sqcap","⊓︀":"sqcaps","⊔":"sqcup","⊔︀":"sqcups","⊕":"oplus","⊖":"ominus","⊗":"otimes","⊘":"osol","⊙":"odot","⊚":"ocir","⊛":"oast","⊝":"odash","⊞":"plusb","⊟":"minusb","⊠":"timesb","⊡":"sdotb","⊢":"vdash","⊬":"nvdash","⊣":"dashv","⊤":"top","⊥":"bot","⊧":"models","⊨":"vDash","⊭":"nvDash","⊩":"Vdash","⊮":"nVdash","⊪":"Vvdash","⊫":"VDash","⊯":"nVDash","⊰":"prurel","⊲":"vltri","⋪":"nltri","⊳":"vrtri","⋫":"nrtri","⊴":"ltrie","⋬":"nltrie","⊴⃒":"nvltrie","⊵":"rtrie","⋭":"nrtrie","⊵⃒":"nvrtrie","⊶":"origof","⊷":"imof","⊸":"mumap","⊹":"hercon","⊺":"intcal","⊻":"veebar","⊽":"barvee","⊾":"angrtvb","⊿":"lrtri",
-"⋀":"Wedge","⋁":"Vee","⋂":"xcap","⋃":"xcup","⋄":"diam","⋅":"sdot","⋆":"Star","⋇":"divonx","⋈":"bowtie","⋉":"ltimes","⋊":"rtimes","⋋":"lthree","⋌":"rthree","⋍":"bsime","⋎":"cuvee","⋏":"cuwed","⋐":"Sub","⋑":"Sup","⋒":"Cap","⋓":"Cup","⋔":"fork","⋕":"epar","⋖":"ltdot","⋗":"gtdot","⋘":"Ll","⋘̸":"nLl","⋙":"Gg","⋙̸":"nGg","⋚︀":"lesg","⋚":"leg","⋛":"gel","⋛︀":"gesl","⋞":"cuepr","⋟":"cuesc","⋦":"lnsim","⋧":"gnsim","⋨":"prnsim","⋩":"scnsim","⋮":"vellip","⋯":"ctdot","⋰":"utdot","⋱":"dtdot","⋲":"disin","⋳":"isinsv","⋴":"isins","⋵":"isindot","⋵̸":"notindot","⋶":"notinvc","⋷":"notinvb","⋹":"isinE","⋹̸":"notinE","⋺":"nisd","⋻":"xnis","⋼":"nis","⋽":"notnivc","⋾":"notnivb","⌅":"barwed","⌆":"Barwed","⌌":"drcrop","⌍":"dlcrop","⌎":"urcrop","⌏":"ulcrop","⌐":"bnot","⌒":"profline","⌓":"profsurf","⌕":"telrec","⌖":"target","⌜":"ulcorn","⌝":"urcorn","⌞":"dlcorn","⌟":"drcorn","⌢":"frown","⌣":"smile","⌭":"cylcty","⌮":"profalar","⌶":"topbot","⌽":"ovbar","⌿":"solbar","⍼":"angzarr","⎰":"lmoust","⎱":"rmoust","⎴":"tbrk","⎵":"bbrk","⎶":"bbrktbrk","⏜":"OverParenthesis","⏝":"UnderParenthesis","⏞":"OverBrace","⏟":"UnderBrace","⏢":"trpezium","⏧":"elinters","␣":"blank","─":"boxh","│":"boxv","┌":"boxdr","┐":"boxdl","└":"boxur","┘":"boxul","├":"boxvr","┤":"boxvl","┬":"boxhd","┴":"boxhu","┼":"boxvh","═":"boxH","║":"boxV","╒":"boxdR","╓":"boxDr","╔":"boxDR","╕":"boxdL","╖":"boxDl","╗":"boxDL","╘":"boxuR","╙":"boxUr","╚":"boxUR","╛":"boxuL","╜":"boxUl","╝":"boxUL","╞":"boxvR","╟":"boxVr","╠":"boxVR","╡":"boxvL","╢":"boxVl","╣":"boxVL","╤":"boxHd","╥":"boxhD","╦":"boxHD","╧":"boxHu","╨":"boxhU","╩":"boxHU","╪":"boxvH","╫":"boxVh","╬":"boxVH","▀":"uhblk","▄":"lhblk","█":"block","░":"blk14","▒":"blk12","▓":"blk34","□":"squ","▪":"squf","▫":"EmptyVerySmallSquare","▭":"rect","▮":"marker","▱":"fltns","△":"xutri","▴":"utrif","▵":"utri","▸":"rtrif","▹":"rtri","▽":"xdtri","▾":"dtrif","▿":"dtri","◂":"ltrif","◃":"ltri","◊":"loz","○":"cir","◬":"tridot","◯":"xcirc","◸":"ultri","◹":"urtri","◺":"lltri","◻":"EmptySmallSquare","◼":"FilledSmallSquare","★":"starf","☆":"star","☎":"phone","♀":"female","♂":"male","♠":"spades","♣":"clubs","♥":"hearts","♦":"diams","♪":"sung","✓":"check","✗":"cross","✠":"malt","✶":"sext","❘":"VerticalSeparator","⟈":"bsolhsub","⟉":"suphsol","⟵":"xlarr","⟶":"xrarr","⟷":"xharr","⟸":"xlArr","⟹":"xrArr","⟺":"xhArr","⟼":"xmap","⟿":"dzigrarr","⤂":"nvlArr","⤃":"nvrArr","⤄":"nvHarr","⤅":"Map","⤌":"lbarr","⤍":"rbarr","⤎":"lBarr","⤏":"rBarr","⤐":"RBarr","⤑":"DDotrahd","⤒":"UpArrowBar","⤓":"DownArrowBar","⤖":"Rarrtl","⤙":"latail","⤚":"ratail","⤛":"lAtail","⤜":"rAtail","⤝":"larrfs","⤞":"rarrfs","⤟":"larrbfs","⤠":"rarrbfs","⤣":"nwarhk","⤤":"nearhk","⤥":"searhk","⤦":"swarhk","⤧":"nwnear","⤨":"toea","⤩":"tosa","⤪":"swnwar","⤳":"rarrc","⤳̸":"nrarrc","⤵":"cudarrr","⤶":"ldca","⤷":"rdca","⤸":"cudarrl","⤹":"larrpl","⤼":"curarrm","⤽":"cularrp","⥅":"rarrpl","⥈":"harrcir","⥉":"Uarrocir","⥊":"lurdshar","⥋":"ldrushar","⥎":"LeftRightVector","⥏":"RightUpDownVector","⥐":"DownLeftRightVector","⥑":"LeftUpDownVector","⥒":"LeftVectorBar","⥓":"RightVectorBar","⥔":"RightUpVectorBar","⥕":"RightDownVectorBar","⥖":"DownLeftVectorBar","⥗":"DownRightVectorBar","⥘":"LeftUpVectorBar","⥙":"LeftDownVectorBar","⥚":"LeftTeeVector","⥛":"RightTeeVector","⥜":"RightUpTeeVector","⥝":"RightDownTeeVector","⥞":"DownLeftTeeVector","⥟":"DownRightTeeVector","⥠":"LeftUpTeeVector","⥡":"LeftDownTeeVector","⥢":"lHar","⥣":"uHar","⥤":"rHar","⥥":"dHar","⥦":"luruhar","⥧":"ldrdhar","⥨":"ruluhar","⥩":"rdldhar","⥪":"lharul","⥫":"llhard","⥬":"rharul","⥭":"lrhard","⥮":"udhar","⥯":"duhar","⥰":"RoundImplies","⥱":"erarr","⥲":"simrarr","⥳":"larrsim","⥴":"rarrsim","⥵":"rarrap","⥶":"ltlarr","⥸":"gtrarr","⥹":"subrarr","⥻":"suplarr","⥼":"lfisht","⥽":"rfisht","⥾":"ufisht","⥿":"dfisht","⦚":"vzigzag","⦜":"vangrt","⦝":"angrtvbd","⦤":"ange","⦥":"range","⦦":"dwangle","⦧":"uwangle","⦨":"angmsdaa","⦩":"angmsdab","⦪":"angmsdac","⦫":"angmsdad","⦬":"angmsdae","⦭":"angmsdaf","⦮":"angmsdag","⦯":"angmsdah","⦰":"bemptyv","⦱":"demptyv","⦲":"cemptyv","⦳":"raemptyv","⦴":"laemptyv","⦵":"ohbar","⦶":"omid","⦷":"opar","⦹":"operp","⦻":"olcross","⦼":"odsold","⦾":"olcir","⦿":"ofcir","⧀":"olt","⧁":"ogt","⧂":"cirscir","⧃":"cirE","⧄":"solb","⧅":"bsolb","⧉":"boxbox","⧍":"trisb","⧎":"rtriltri","⧏":"LeftTriangleBar","⧏̸":"NotLeftTriangleBar","⧐":"RightTriangleBar","⧐̸":"NotRightTriangleBar","⧜":"iinfin","⧝":"infintie","⧞":"nvinfin","⧣":"eparsl","⧤":"smeparsl","⧥":"eqvparsl","⧫":"lozf","⧴":"RuleDelayed","⧶":"dsol","⨀":"xodot","⨁":"xoplus","⨂":"xotime","⨄":"xuplus","⨆":"xsqcup","⨍":"fpartint","⨐":"cirfnint","⨑":"awint","⨒":"rppolint","⨓":"scpolint","⨔":"npolint","⨕":"pointint","⨖":"quatint","⨗":"intlarhk","⨢":"pluscir","⨣":"plusacir","⨤":"simplus","⨥":"plusdu","⨦":"plussim","⨧":"plustwo","⨩":"mcomma","⨪":"minusdu","⨭":"loplus","⨮":"roplus","⨯":"Cross","⨰":"timesd","⨱":"timesbar","⨳":"smashp","⨴":"lotimes","⨵":"rotimes","⨶":"otimesas","⨷":"Otimes","⨸":"odiv","⨹":"triplus","⨺":"triminus","⨻":"tritime","⨼":"iprod","⨿":"amalg","⩀":"capdot","⩂":"ncup","⩃":"ncap","⩄":"capand","⩅":"cupor","⩆":"cupcap","⩇":"capcup","⩈":"cupbrcap","⩉":"capbrcup","⩊":"cupcup","⩋":"capcap","⩌":"ccups","⩍":"ccaps","⩐":"ccupssm","⩓":"And","⩔":"Or","⩕":"andand","⩖":"oror","⩗":"orslope","⩘":"andslope","⩚":"andv","⩛":"orv","⩜":"andd","⩝":"ord","⩟":"wedbar","⩦":"sdote","⩪":"simdot","⩭":"congdot","⩭̸":"ncongdot","⩮":"easter","⩯":"apacir","⩰":"apE","⩰̸":"napE","⩱":"eplus","⩲":"pluse","⩳":"Esim","⩷":"eDDot","⩸":"equivDD","⩹":"ltcir","⩺":"gtcir","⩻":"ltquest","⩼":"gtquest","⩽":"les","⩽̸":"nles","⩾":"ges","⩾̸":"nges","⩿":"lesdot","⪀":"gesdot","⪁":"lesdoto","⪂":"gesdoto","⪃":"lesdotor","⪄":"gesdotol","⪅":"lap","⪆":"gap","⪇":"lne","⪈":"gne","⪉":"lnap","⪊":"gnap","⪋":"lEg","⪌":"gEl","⪍":"lsime","⪎":"gsime","⪏":"lsimg","⪐":"gsiml","⪑":"lgE","⪒":"glE","⪓":"lesges","⪔":"gesles","⪕":"els","⪖":"egs","⪗":"elsdot","⪘":"egsdot","⪙":"el","⪚":"eg","⪝":"siml","⪞":"simg","⪟":"simlE","⪠":"simgE","⪡":"LessLess","⪡̸":"NotNestedLessLess","⪢":"GreaterGreater","⪢̸":"NotNestedGreaterGreater","⪤":"glj","⪥":"gla","⪦":"ltcc","⪧":"gtcc","⪨":"lescc","⪩":"gescc","⪪":"smt","⪫":"lat","⪬":"smte","⪬︀":"smtes","⪭":"late","⪭︀":"lates","⪮":"bumpE","⪯":"pre","⪯̸":"npre","⪰":"sce","⪰̸":"nsce","⪳":"prE","⪴":"scE","⪵":"prnE","⪶":"scnE","⪷":"prap","⪸":"scap","⪹":"prnap","⪺":"scnap","⪻":"Pr","⪼":"Sc","⪽":"subdot","⪾":"supdot","⪿":"subplus","⫀":"supplus","⫁":"submult","⫂":"supmult","⫃":"subedot","⫄":"supedot","⫅":"subE","⫅̸":"nsubE","⫆":"supE","⫆̸":"nsupE","⫇":"subsim","⫈":"supsim","⫋︀":"vsubnE","⫋":"subnE","⫌︀":"vsupnE","⫌":"supnE","⫏":"csub","⫐":"csup","⫑":"csube","⫒":"csupe","⫓":"subsup","⫔":"supsub","⫕":"subsub","⫖":"supsup","⫗":"suphsub","⫘":"supdsub","⫙":"forkv","⫚":"topfork","⫛":"mlcp","⫤":"Dashv","⫦":"Vdashl","⫧":"Barv","⫨":"vBar","⫩":"vBarv","⫫":"Vbar","⫬":"Not","⫭":"bNot","⫮":"rnmid","⫯":"cirmid","⫰":"midcir","⫱":"topcir","⫲":"nhpar","⫳":"parsim","⫽":"parsl","⫽⃥":"nparsl","♭":"flat","♮":"natur","♯":"sharp","¤":"curren","¢":"cent",$:"dollar","£":"pound","¥":"yen","€":"euro","¹":"sup1","½":"half","⅓":"frac13","¼":"frac14","⅕":"frac15","⅙":"frac16","⅛":"frac18","²":"sup2","⅔":"frac23","⅖":"frac25","³":"sup3","¾":"frac34","⅗":"frac35","⅜":"frac38","⅘":"frac45","⅚":"frac56","⅝":"frac58","⅞":"frac78","𝒶":"ascr","𝕒":"aopf","𝔞":"afr","𝔸":"Aopf","𝔄":"Afr","𝒜":"Ascr","ª":"ordf","á":"aacute","Á":"Aacute","à":"agrave","À":"Agrave","ă":"abreve","Ă":"Abreve","â":"acirc","Â":"Acirc","å":"aring","Å":"angst","ä":"auml","Ä":"Auml","ã":"atilde","Ã":"Atilde","ą":"aogon","Ą":"Aogon","ā":"amacr","Ā":"Amacr","æ":"aelig","Æ":"AElig","𝒷":"bscr","𝕓":"bopf","𝔟":"bfr","𝔹":"Bopf","ℬ":"Bscr","𝔅":"Bfr","𝔠":"cfr","𝒸":"cscr","𝕔":"copf","ℭ":"Cfr","𝒞":"Cscr","ℂ":"Copf","ć":"cacute","Ć":"Cacute","ĉ":"ccirc","Ĉ":"Ccirc","č":"ccaron","Č":"Ccaron","ċ":"cdot","Ċ":"Cdot","ç":"ccedil","Ç":"Ccedil","℅":"incare","𝔡":"dfr","ⅆ":"dd","𝕕":"dopf","𝒹":"dscr","𝒟":"Dscr","𝔇":"Dfr","ⅅ":"DD","𝔻":"Dopf","ď":"dcaron","Ď":"Dcaron","đ":"dstrok","Đ":"Dstrok","ð":"eth","Ð":"ETH","ⅇ":"ee","ℯ":"escr","𝔢":"efr","𝕖":"eopf","ℰ":"Escr","𝔈":"Efr","𝔼":"Eopf","é":"eacute","É":"Eacute","è":"egrave","È":"Egrave","ê":"ecirc","Ê":"Ecirc","ě":"ecaron","Ě":"Ecaron","ë":"euml","Ë":"Euml","ė":"edot","Ė":"Edot","ę":"eogon","Ę":"Eogon","ē":"emacr","Ē":"Emacr","𝔣":"ffr","𝕗":"fopf","𝒻":"fscr","𝔉":"Ffr","𝔽":"Fopf","ℱ":"Fscr","ff":"fflig","ffi":"ffilig","ffl":"ffllig","fi":"filig",fj:"fjlig","fl":"fllig","ƒ":"fnof","ℊ":"gscr","𝕘":"gopf","𝔤":"gfr","𝒢":"Gscr","𝔾":"Gopf","𝔊":"Gfr","ǵ":"gacute","ğ":"gbreve","Ğ":"Gbreve","ĝ":"gcirc","Ĝ":"Gcirc","ġ":"gdot","Ġ":"Gdot","Ģ":"Gcedil","𝔥":"hfr","ℎ":"planckh","𝒽":"hscr","𝕙":"hopf","ℋ":"Hscr","ℌ":"Hfr","ℍ":"Hopf","ĥ":"hcirc","Ĥ":"Hcirc","ℏ":"hbar","ħ":"hstrok","Ħ":"Hstrok","𝕚":"iopf","𝔦":"ifr","𝒾":"iscr","ⅈ":"ii","𝕀":"Iopf","ℐ":"Iscr","ℑ":"Im","í":"iacute","Í":"Iacute","ì":"igrave","Ì":"Igrave","î":"icirc","Î":"Icirc","ï":"iuml","Ï":"Iuml","ĩ":"itilde","Ĩ":"Itilde","İ":"Idot","į":"iogon","Į":"Iogon","ī":"imacr","Ī":"Imacr","ij":"ijlig","IJ":"IJlig","ı":"imath","𝒿":"jscr","𝕛":"jopf","𝔧":"jfr","𝒥":"Jscr","𝔍":"Jfr","𝕁":"Jopf","ĵ":"jcirc","Ĵ":"Jcirc","ȷ":"jmath","𝕜":"kopf","𝓀":"kscr","𝔨":"kfr","𝒦":"Kscr","𝕂":"Kopf","𝔎":"Kfr","ķ":"kcedil","Ķ":"Kcedil","𝔩":"lfr","𝓁":"lscr","ℓ":"ell","𝕝":"lopf","ℒ":"Lscr","𝔏":"Lfr","𝕃":"Lopf","ĺ":"lacute","Ĺ":"Lacute","ľ":"lcaron","Ľ":"Lcaron","ļ":"lcedil","Ļ":"Lcedil","ł":"lstrok","Ł":"Lstrok","ŀ":"lmidot","Ŀ":"Lmidot","𝔪":"mfr","𝕞":"mopf","𝓂":"mscr","𝔐":"Mfr","𝕄":"Mopf","ℳ":"Mscr","𝔫":"nfr","𝕟":"nopf","𝓃":"nscr","ℕ":"Nopf","𝒩":"Nscr","𝔑":"Nfr","ń":"nacute","Ń":"Nacute","ň":"ncaron","Ň":"Ncaron","ñ":"ntilde","Ñ":"Ntilde","ņ":"ncedil","Ņ":"Ncedil","№":"numero","ŋ":"eng","Ŋ":"ENG","𝕠":"oopf","𝔬":"ofr","ℴ":"oscr","𝒪":"Oscr","𝔒":"Ofr","𝕆":"Oopf","º":"ordm","ó":"oacute","Ó":"Oacute","ò":"ograve","Ò":"Ograve","ô":"ocirc","Ô":"Ocirc","ö":"ouml","Ö":"Ouml","ő":"odblac","Ő":"Odblac","õ":"otilde","Õ":"Otilde","ø":"oslash","Ø":"Oslash","ō":"omacr","Ō":"Omacr","œ":"oelig","Œ":"OElig","𝔭":"pfr","𝓅":"pscr","𝕡":"popf","ℙ":"Popf","𝔓":"Pfr","𝒫":"Pscr","𝕢":"qopf","𝔮":"qfr","𝓆":"qscr","𝒬":"Qscr","𝔔":"Qfr","ℚ":"Qopf","ĸ":"kgreen","𝔯":"rfr","𝕣":"ropf","𝓇":"rscr","ℛ":"Rscr","ℜ":"Re","ℝ":"Ropf","ŕ":"racute","Ŕ":"Racute","ř":"rcaron","Ř":"Rcaron","ŗ":"rcedil","Ŗ":"Rcedil","𝕤":"sopf","𝓈":"sscr","𝔰":"sfr","𝕊":"Sopf","𝔖":"Sfr","𝒮":"Sscr","Ⓢ":"oS","ś":"sacute","Ś":"Sacute","ŝ":"scirc","Ŝ":"Scirc","š":"scaron","Š":"Scaron","ş":"scedil","Ş":"Scedil","ß":"szlig","𝔱":"tfr","𝓉":"tscr","𝕥":"topf","𝒯":"Tscr","𝔗":"Tfr","𝕋":"Topf","ť":"tcaron","Ť":"Tcaron","ţ":"tcedil","Ţ":"Tcedil","™":"trade","ŧ":"tstrok","Ŧ":"Tstrok","𝓊":"uscr","𝕦":"uopf","𝔲":"ufr","𝕌":"Uopf","𝔘":"Ufr","𝒰":"Uscr","ú":"uacute","Ú":"Uacute","ù":"ugrave","Ù":"Ugrave","ŭ":"ubreve","Ŭ":"Ubreve","û":"ucirc","Û":"Ucirc","ů":"uring","Ů":"Uring","ü":"uuml","Ü":"Uuml","ű":"udblac","Ű":"Udblac","ũ":"utilde","Ũ":"Utilde","ų":"uogon","Ų":"Uogon","ū":"umacr","Ū":"Umacr","𝔳":"vfr","𝕧":"vopf","𝓋":"vscr","𝔙":"Vfr","𝕍":"Vopf","𝒱":"Vscr","𝕨":"wopf","𝓌":"wscr","𝔴":"wfr","𝒲":"Wscr","𝕎":"Wopf","𝔚":"Wfr","ŵ":"wcirc","Ŵ":"Wcirc","𝔵":"xfr","𝓍":"xscr","𝕩":"xopf","𝕏":"Xopf","𝔛":"Xfr","𝒳":"Xscr","𝔶":"yfr","𝓎":"yscr","𝕪":"yopf","𝒴":"Yscr","𝔜":"Yfr","𝕐":"Yopf","ý":"yacute","Ý":"Yacute","ŷ":"ycirc","Ŷ":"Ycirc","ÿ":"yuml","Ÿ":"Yuml","𝓏":"zscr","𝔷":"zfr","𝕫":"zopf","ℨ":"Zfr","ℤ":"Zopf","𝒵":"Zscr","ź":"zacute","Ź":"Zacute","ž":"zcaron","Ž":"Zcaron","ż":"zdot","Ż":"Zdot","Ƶ":"imped","þ":"thorn","Þ":"THORN","ʼn":"napos","α":"alpha","Α":"Alpha","β":"beta","Β":"Beta","γ":"gamma","Γ":"Gamma","δ":"delta","Δ":"Delta","ε":"epsi","ϵ":"epsiv","Ε":"Epsilon","ϝ":"gammad","Ϝ":"Gammad","ζ":"zeta","Ζ":"Zeta","η":"eta","Η":"Eta","θ":"theta","ϑ":"thetav","Θ":"Theta","ι":"iota","Ι":"Iota","κ":"kappa","ϰ":"kappav","Κ":"Kappa","λ":"lambda","Λ":"Lambda","μ":"mu","µ":"micro","Μ":"Mu","ν":"nu","Ν":"Nu","ξ":"xi","Ξ":"Xi","ο":"omicron","Ο":"Omicron","π":"pi","ϖ":"piv","Π":"Pi","ρ":"rho","ϱ":"rhov","Ρ":"Rho","σ":"sigma","Σ":"Sigma","ς":"sigmaf","τ":"tau","Τ":"Tau","υ":"upsi","Υ":"Upsilon","ϒ":"Upsi","φ":"phi","ϕ":"phiv","Φ":"Phi","χ":"chi","Χ":"Chi","ψ":"psi","Ψ":"Psi","ω":"omega","Ω":"ohm","а":"acy","А":"Acy","б":"bcy","Б":"Bcy","в":"vcy","В":"Vcy","г":"gcy","Г":"Gcy","ѓ":"gjcy","Ѓ":"GJcy","д":"dcy","Д":"Dcy","ђ":"djcy","Ђ":"DJcy","е":"iecy","Е":"IEcy","ё":"iocy","Ё":"IOcy","є":"jukcy","Є":"Jukcy","ж":"zhcy","Ж":"ZHcy","з":"zcy","З":"Zcy","ѕ":"dscy","Ѕ":"DScy","и":"icy","И":"Icy","і":"iukcy","І":"Iukcy","ї":"yicy","Ї":"YIcy","й":"jcy","Й":"Jcy","ј":"jsercy","Ј":"Jsercy","к":"kcy","К":"Kcy","ќ":"kjcy","Ќ":"KJcy","л":"lcy","Л":"Lcy","љ":"ljcy","Љ":"LJcy","м":"mcy","М":"Mcy","н":"ncy","Н":"Ncy","њ":"njcy","Њ":"NJcy","о":"ocy","О":"Ocy","п":"pcy","П":"Pcy","р":"rcy","Р":"Rcy","с":"scy","С":"Scy","т":"tcy","Т":"Tcy","ћ":"tshcy","Ћ":"TSHcy","у":"ucy","У":"Ucy","ў":"ubrcy","Ў":"Ubrcy","ф":"fcy","Ф":"Fcy","х":"khcy","Х":"KHcy","ц":"tscy","Ц":"TScy","ч":"chcy","Ч":"CHcy","џ":"dzcy","Џ":"DZcy","ш":"shcy","Ш":"SHcy","щ":"shchcy","Щ":"SHCHcy","ъ":"hardcy","Ъ":"HARDcy","ы":"ycy","Ы":"Ycy","ь":"softcy","Ь":"SOFTcy","э":"ecy","Э":"Ecy","ю":"yucy","Ю":"YUcy","я":"yacy","Я":"YAcy","ℵ":"aleph","ℶ":"beth","ℷ":"gimel","ℸ":"daleth"},m=/["&'<>`]/g,n={'"':"&quot;","&":"&amp;","'":"&#x27;","<":"&lt;",">":"&gt;","`":"&#x60;"},o=/&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/,p=/[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,q=/&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)([=a-zA-Z0-9])?/g,r={aacute:"á",Aacute:"Á",abreve:"ă",Abreve:"Ă",ac:"∾",acd:"∿",acE:"∾̳",acirc:"â",Acirc:"Â",acute:"´",acy:"а",Acy:"А",aelig:"æ",AElig:"Æ",af:"⁡",afr:"𝔞",Afr:"𝔄",agrave:"à",Agrave:"À",alefsym:"ℵ",aleph:"ℵ",alpha:"α",Alpha:"Α",amacr:"ā",Amacr:"Ā",amalg:"⨿",amp:"&",AMP:"&",and:"∧",And:"⩓",andand:"⩕",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsd:"∡",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",aogon:"ą",Aogon:"Ą",aopf:"𝕒",Aopf:"𝔸",ap:"≈",apacir:"⩯",ape:"≊",apE:"⩰",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",aring:"å",Aring:"Å",ascr:"𝒶",Ascr:"𝒜",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",bcy:"б",Bcy:"Б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",beta:"β",Beta:"Β",beth:"ℶ",between:"≬",bfr:"𝔟",Bfr:"𝔅",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bnot:"⌐",bNot:"⫭",bopf:"𝕓",Bopf:"𝔹",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxhD:"╥",boxHd:"╤",boxHD:"╦",boxhu:"┴",boxhU:"╨",boxHu:"╧",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsol:"\\",bsolb:"⧅",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpe:"≏",bumpE:"⪮",bumpeq:"≏",Bumpeq:"≎",cacute:"ć",Cacute:"Ć",cap:"∩",Cap:"⋒",capand:"⩄",capbrcup:"⩉",capcap:"⩋",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",ccaron:"č",Ccaron:"Č",ccedil:"ç",Ccedil:"Ç",ccirc:"ĉ",Ccirc:"Ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",cdot:"ċ",Cdot:"Ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",chcy:"ч",CHcy:"Ч",check:"✓",checkmark:"✓",chi:"χ",Chi:"Χ",cir:"○",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cire:"≗",cirE:"⧃",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",colone:"≔",Colone:"⩴",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",cscr:"𝒸",Cscr:"𝒞",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cup:"∪",Cup:"⋓",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",dArr:"⇓",Darr:"↡",dash:"‐",dashv:"⊣",Dashv:"⫤",dbkarow:"⤏",dblac:"˝",dcaron:"ď",Dcaron:"Ď",dcy:"д",Dcy:"Д",dd:"ⅆ",DD:"ⅅ",ddagger:"‡",ddarr:"⇊",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",delta:"δ",Delta:"Δ",demptyv:"⦱",dfisht:"⥿",dfr:"𝔡",Dfr:"𝔇",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",djcy:"ђ",DJcy:"Ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",dopf:"𝕕",Dopf:"𝔻",dot:"˙",Dot:"¨",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",downarrow:"↓",Downarrow:"⇓",DownArrow:"↓",DownArrowBar:"⤓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVector:"↽",DownLeftVectorBar:"⥖",DownRightTeeVector:"⥟",DownRightVector:"⇁",DownRightVectorBar:"⥗",DownTee:"⊤",DownTeeArrow:"↧",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",dscr:"𝒹",Dscr:"𝒟",dscy:"ѕ",DScy:"Ѕ",dsol:"⧶",dstrok:"đ",Dstrok:"Đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",dzcy:"џ",DZcy:"Џ",dzigrarr:"⟿",eacute:"é",Eacute:"É",easter:"⩮",ecaron:"ě",Ecaron:"Ě",ecir:"≖",ecirc:"ê",Ecirc:"Ê",ecolon:"≕",ecy:"э",Ecy:"Э",eDDot:"⩷",edot:"ė",eDot:"≑",Edot:"Ė",ee:"ⅇ",efDot:"≒",efr:"𝔢",Efr:"𝔈",eg:"⪚",egrave:"è",Egrave:"È",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",emacr:"ē",Emacr:"Ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp:" ",emsp13:" ",emsp14:" ",eng:"ŋ",ENG:"Ŋ",ensp:" ",eogon:"ę",Eogon:"Ę",eopf:"𝕖",Eopf:"𝔼",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",epsilon:"ε",Epsilon:"Ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",esim:"≂",Esim:"⩳",eta:"η",Eta:"Η",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",fcy:"ф",Fcy:"Ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",ffr:"𝔣",Ffr:"𝔉",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",fopf:"𝕗",Fopf:"𝔽",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",gamma:"γ",Gamma:"Γ",gammad:"ϝ",Gammad:"Ϝ",gap:"⪆",gbreve:"ğ",Gbreve:"Ğ",Gcedil:"Ģ",gcirc:"ĝ",Gcirc:"Ĝ",gcy:"г",Gcy:"Г",gdot:"ġ",Gdot:"Ġ",ge:"≥",gE:"≧",gel:"⋛",gEl:"⪌",geq:"≥",geqq:"≧",geqslant:"⩾",ges:"⩾",gescc:"⪩",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",gfr:"𝔤",Gfr:"𝔊",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",gjcy:"ѓ",GJcy:"Ѓ",gl:"≷",gla:"⪥",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",gopf:"𝕘",Gopf:"𝔾",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",gscr:"ℊ",Gscr:"𝒢",gsim:"≳",gsime:"⪎",gsiml:"⪐",gt:">",Gt:"≫",GT:">",gtcc:"⪧",gtcir:"⩺",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",hardcy:"ъ",HARDcy:"Ъ",harr:"↔",hArr:"⇔",harrcir:"⥈",harrw:"↭",Hat:"^",hbar:"ℏ",hcirc:"ĥ",Hcirc:"Ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",hstrok:"ħ",Hstrok:"Ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",iacute:"í",Iacute:"Í",ic:"⁣",icirc:"î",Icirc:"Î",icy:"и",Icy:"И",Idot:"İ",iecy:"е",IEcy:"Е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",igrave:"ì",Igrave:"Ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",ijlig:"ij",IJlig:"IJ",Im:"ℑ",imacr:"ī",Imacr:"Ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",imof:"⊷",imped:"Ƶ",Implies:"⇒",in:"∈",incare:"℅",infin:"∞",infintie:"⧝",inodot:"ı",int:"∫",Int:"∬",intcal:"⊺",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",iocy:"ё",IOcy:"Ё",iogon:"į",Iogon:"Į",iopf:"𝕚",Iopf:"𝕀",iota:"ι",Iota:"Ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",itilde:"ĩ",Itilde:"Ĩ",iukcy:"і",Iukcy:"І",iuml:"ï",Iuml:"Ï",jcirc:"ĵ",Jcirc:"Ĵ",jcy:"й",Jcy:"Й",jfr:"𝔧",Jfr:"𝔍",jmath:"ȷ",jopf:"𝕛",Jopf:"𝕁",jscr:"𝒿",Jscr:"𝒥",jsercy:"ј",Jsercy:"Ј",jukcy:"є",Jukcy:"Є",kappa:"κ",Kappa:"Κ",kappav:"ϰ",kcedil:"ķ",Kcedil:"Ķ",kcy:"к",Kcy:"К",kfr:"𝔨",Kfr:"𝔎",kgreen:"ĸ",khcy:"х",KHcy:"Х",kjcy:"ќ",KJcy:"Ќ",kopf:"𝕜",Kopf:"𝕂",kscr:"𝓀",Kscr:"𝒦",lAarr:"⇚",lacute:"ĺ",Lacute:"Ĺ",laemptyv:"⦴",lagran:"ℒ",lambda:"λ",Lambda:"Λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larr:"←",lArr:"⇐",Larr:"↞",larrb:"⇤",larrbfs:"⤟",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",lat:"⪫",latail:"⤙",lAtail:"⤛",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",lcaron:"ľ",Lcaron:"Ľ",lcedil:"ļ",Lcedil:"Ļ",lceil:"⌈",lcub:"{",lcy:"л",Lcy:"Л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",leftarrow:"←",Leftarrow:"⇐",LeftArrow:"←",LeftArrowBar:"⇤",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVector:"⇃",LeftDownVectorBar:"⥙",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",Leftrightarrow:"⇔",LeftRightArrow:"↔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTee:"⊣",LeftTeeArrow:"↤",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangle:"⊲",LeftTriangleBar:"⧏",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVector:"↿",LeftUpVectorBar:"⥘",LeftVector:"↼",LeftVectorBar:"⥒",leg:"⋚",lEg:"⪋",leq:"≤",leqq:"≦",leqslant:"⩽",les:"⩽",lescc:"⪨",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",lfr:"𝔩",Lfr:"𝔏",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",ljcy:"љ",LJcy:"Љ",ll:"≪",Ll:"⋘",llarr:"⇇",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",lmidot:"ŀ",Lmidot:"Ŀ",lmoust:"⎰",lmoustache:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",Longleftarrow:"⟸",LongLeftArrow:"⟵",longleftrightarrow:"⟷",Longleftrightarrow:"⟺",LongLeftRightArrow:"⟷",longmapsto:"⟼",longrightarrow:"⟶",Longrightarrow:"⟹",LongRightArrow:"⟶",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",lopf:"𝕝",Lopf:"𝕃",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",lstrok:"ł",Lstrok:"Ł",lt:"<",Lt:"≪",LT:"<",ltcc:"⪦",ltcir:"⩹",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",map:"↦",Map:"⤅",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",mcy:"м",Mcy:"М",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",mfr:"𝔪",Mfr:"𝔐",mho:"℧",micro:"µ",mid:"∣",midast:"*",midcir:"⫰",middot:"·",minus:"−",minusb:"⊟",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",mopf:"𝕞",Mopf:"𝕄",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",mu:"μ",Mu:"Μ",multimap:"⊸",mumap:"⊸",nabla:"∇",nacute:"ń",Nacute:"Ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natur:"♮",natural:"♮",naturals:"ℕ",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",ncaron:"ň",Ncaron:"Ň",ncedil:"ņ",Ncedil:"Ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",ncy:"н",Ncy:"Н",ndash:"–",ne:"≠",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",nfr:"𝔫",Nfr:"𝔑",nge:"≱",ngE:"≧̸",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",ngt:"≯",nGt:"≫⃒",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",njcy:"њ",NJcy:"Њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nle:"≰",nlE:"≦̸",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nlt:"≮",nLt:"≪⃒",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",not:"¬",Not:"⫬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangle:"⋪",NotLeftTriangleBar:"⧏̸",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangle:"⋫",NotRightTriangleBar:"⧐̸",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",npar:"∦",nparallel:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",npre:"⪯̸",nprec:"⊀",npreceq:"⪯̸",nrarr:"↛",nrArr:"⇏",nrarrc:"⤳̸",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",nscr:"𝓃",Nscr:"𝒩",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsube:"⊈",nsubE:"⫅̸",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupe:"⊉",nsupE:"⫆̸",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",ntilde:"ñ",Ntilde:"Ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",nu:"ν",Nu:"Ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",oacute:"ó",Oacute:"Ó",oast:"⊛",ocir:"⊚",ocirc:"ô",Ocirc:"Ô",ocy:"о",Ocy:"О",odash:"⊝",odblac:"ő",Odblac:"Ő",odiv:"⨸",odot:"⊙",odsold:"⦼",oelig:"œ",OElig:"Œ",ofcir:"⦿",ofr:"𝔬",Ofr:"𝔒",ogon:"˛",ograve:"ò",Ograve:"Ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",omacr:"ō",Omacr:"Ō",omega:"ω",Omega:"Ω",omicron:"ο",Omicron:"Ο",omid:"⦶",ominus:"⊖",oopf:"𝕠",Oopf:"𝕆",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",or:"∨",Or:"⩔",orarr:"↻",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",oscr:"ℴ",Oscr:"𝒪",oslash:"ø",Oslash:"Ø",osol:"⊘",otilde:"õ",Otilde:"Õ",otimes:"⊗",Otimes:"⨷",otimesas:"⨶",ouml:"ö",Ouml:"Ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",par:"∥",para:"¶",parallel:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",pcy:"п",Pcy:"П",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",pfr:"𝔭",Pfr:"𝔓",phi:"φ",Phi:"Φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",pi:"π",Pi:"Π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plus:"+",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",pr:"≺",Pr:"⪻",prap:"⪷",prcue:"≼",pre:"⪯",prE:"⪳",prec:"≺",precapprox:"⪷",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportion:"∷",Proportional:"∝",propto:"∝",prsim:"≾",prurel:"⊰",pscr:"𝓅",Pscr:"𝒫",psi:"ψ",Psi:"Ψ",puncsp:" ",qfr:"𝔮",Qfr:"𝔔",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",qscr:"𝓆",Qscr:"𝒬",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",racute:"ŕ",Racute:"Ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarr:"→",rArr:"⇒",Rarr:"↠",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",rarrtl:"↣",Rarrtl:"⤖",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",
-rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",rcaron:"ř",Rcaron:"Ř",rcedil:"ŗ",Rcedil:"Ŗ",rceil:"⌉",rcub:"}",rcy:"р",Rcy:"Р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",Re:"ℜ",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",rho:"ρ",Rho:"Ρ",rhov:"ϱ",RightAngleBracket:"⟩",rightarrow:"→",Rightarrow:"⇒",RightArrow:"→",RightArrowBar:"⇥",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVector:"⇂",RightDownVectorBar:"⥕",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTee:"⊢",RightTeeArrow:"↦",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangle:"⊳",RightTriangleBar:"⧐",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVector:"↾",RightUpVectorBar:"⥔",RightVector:"⇀",RightVectorBar:"⥓",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoust:"⎱",rmoustache:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",sacute:"ś",Sacute:"Ś",sbquo:"‚",sc:"≻",Sc:"⪼",scap:"⪸",scaron:"š",Scaron:"Š",sccue:"≽",sce:"⪰",scE:"⪴",scedil:"ş",Scedil:"Ş",scirc:"ŝ",Scirc:"Ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",scy:"с",Scy:"С",sdot:"⋅",sdotb:"⊡",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",sfr:"𝔰",Sfr:"𝔖",sfrown:"⌢",sharp:"♯",shchcy:"щ",SHCHcy:"Щ",shcy:"ш",SHcy:"Ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",sigma:"σ",Sigma:"Σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",softcy:"ь",SOFTcy:"Ь",sol:"/",solb:"⧄",solbar:"⌿",sopf:"𝕤",Sopf:"𝕊",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",squ:"□",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squf:"▪",srarr:"→",sscr:"𝓈",Sscr:"𝒮",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",star:"☆",Star:"⋆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",sube:"⊆",subE:"⫅",subedot:"⫃",submult:"⫁",subne:"⊊",subnE:"⫋",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succ:"≻",succapprox:"⪸",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup:"⊃",Sup:"⋑",sup1:"¹",sup2:"²",sup3:"³",supdot:"⪾",supdsub:"⫘",supe:"⊇",supE:"⫆",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supne:"⊋",supnE:"⫌",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",tau:"τ",Tau:"Τ",tbrk:"⎴",tcaron:"ť",Tcaron:"Ť",tcedil:"ţ",Tcedil:"Ţ",tcy:"т",Tcy:"Т",tdot:"⃛",telrec:"⌕",tfr:"𝔱",Tfr:"𝔗",there4:"∴",therefore:"∴",Therefore:"∴",theta:"θ",Theta:"Θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",thinsp:" ",ThinSpace:" ",thkap:"≈",thksim:"∼",thorn:"þ",THORN:"Þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",times:"×",timesb:"⊠",timesbar:"⨱",timesd:"⨰",tint:"∭",toea:"⤨",top:"⊤",topbot:"⌶",topcir:"⫱",topf:"𝕥",Topf:"𝕋",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",tscr:"𝓉",Tscr:"𝒯",tscy:"ц",TScy:"Ц",tshcy:"ћ",TSHcy:"Ћ",tstrok:"ŧ",Tstrok:"Ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",uacute:"ú",Uacute:"Ú",uarr:"↑",uArr:"⇑",Uarr:"↟",Uarrocir:"⥉",ubrcy:"ў",Ubrcy:"Ў",ubreve:"ŭ",Ubreve:"Ŭ",ucirc:"û",Ucirc:"Û",ucy:"у",Ucy:"У",udarr:"⇅",udblac:"ű",Udblac:"Ű",udhar:"⥮",ufisht:"⥾",ufr:"𝔲",Ufr:"𝔘",ugrave:"ù",Ugrave:"Ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",umacr:"ū",Umacr:"Ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",uogon:"ų",Uogon:"Ų",uopf:"𝕦",Uopf:"𝕌",uparrow:"↑",Uparrow:"⇑",UpArrow:"↑",UpArrowBar:"⤒",UpArrowDownArrow:"⇅",updownarrow:"↕",Updownarrow:"⇕",UpDownArrow:"↕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",upsilon:"υ",Upsilon:"Υ",UpTee:"⊥",UpTeeArrow:"↥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",uring:"ů",Uring:"Ů",urtri:"◹",uscr:"𝓊",Uscr:"𝒰",utdot:"⋰",utilde:"ũ",Utilde:"Ũ",utri:"▵",utrif:"▴",uuarr:"⇈",uuml:"ü",Uuml:"Ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",vcy:"в",Vcy:"В",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",vee:"∨",Vee:"⋁",veebar:"⊻",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",vfr:"𝔳",Vfr:"𝔙",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",vopf:"𝕧",Vopf:"𝕍",vprop:"∝",vrtri:"⊳",vscr:"𝓋",Vscr:"𝒱",vsubne:"⊊︀",vsubnE:"⫋︀",vsupne:"⊋︀",vsupnE:"⫌︀",Vvdash:"⊪",vzigzag:"⦚",wcirc:"ŵ",Wcirc:"Ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",wfr:"𝔴",Wfr:"𝔚",wopf:"𝕨",Wopf:"𝕎",wp:"℘",wr:"≀",wreath:"≀",wscr:"𝓌",Wscr:"𝒲",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",xfr:"𝔵",Xfr:"𝔛",xharr:"⟷",xhArr:"⟺",xi:"ξ",Xi:"Ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",xopf:"𝕩",Xopf:"𝕏",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",xscr:"𝓍",Xscr:"𝒳",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",yacute:"ý",Yacute:"Ý",yacy:"я",YAcy:"Я",ycirc:"ŷ",Ycirc:"Ŷ",ycy:"ы",Ycy:"Ы",yen:"¥",yfr:"𝔶",Yfr:"𝔜",yicy:"ї",YIcy:"Ї",yopf:"𝕪",Yopf:"𝕐",yscr:"𝓎",Yscr:"𝒴",yucy:"ю",YUcy:"Ю",yuml:"ÿ",Yuml:"Ÿ",zacute:"ź",Zacute:"Ź",zcaron:"ž",Zcaron:"Ž",zcy:"з",Zcy:"З",zdot:"ż",Zdot:"Ż",zeetrf:"ℨ",ZeroWidthSpace:"​",zeta:"ζ",Zeta:"Ζ",zfr:"𝔷",Zfr:"ℨ",zhcy:"ж",ZHcy:"Ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",zscr:"𝓏",Zscr:"𝒵",zwj:"‍",zwnj:"‌"},s={aacute:"á",Aacute:"Á",acirc:"â",Acirc:"Â",acute:"´",aelig:"æ",AElig:"Æ",agrave:"à",Agrave:"À",amp:"&",AMP:"&",aring:"å",Aring:"Å",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",brvbar:"¦",ccedil:"ç",Ccedil:"Ç",cedil:"¸",cent:"¢",copy:"©",COPY:"©",curren:"¤",deg:"°",divide:"÷",eacute:"é",Eacute:"É",ecirc:"ê",Ecirc:"Ê",egrave:"è",Egrave:"È",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",frac12:"½",frac14:"¼",frac34:"¾",gt:">",GT:">",iacute:"í",Iacute:"Í",icirc:"î",Icirc:"Î",iexcl:"¡",igrave:"ì",Igrave:"Ì",iquest:"¿",iuml:"ï",Iuml:"Ï",laquo:"«",lt:"<",LT:"<",macr:"¯",micro:"µ",middot:"·",nbsp:" ",not:"¬",ntilde:"ñ",Ntilde:"Ñ",oacute:"ó",Oacute:"Ó",ocirc:"ô",Ocirc:"Ô",ograve:"ò",Ograve:"Ò",ordf:"ª",ordm:"º",oslash:"ø",Oslash:"Ø",otilde:"õ",Otilde:"Õ",ouml:"ö",Ouml:"Ö",para:"¶",plusmn:"±",pound:"£",quot:'"',QUOT:'"',raquo:"»",reg:"®",REG:"®",sect:"§",shy:"­",sup1:"¹",sup2:"²",sup3:"³",szlig:"ß",thorn:"þ",THORN:"Þ",times:"×",uacute:"ú",Uacute:"Ú",ucirc:"û",Ucirc:"Û",ugrave:"ù",Ugrave:"Ù",uml:"¨",uuml:"ü",Uuml:"Ü",yacute:"ý",Yacute:"Ý",yen:"¥",yuml:"ÿ"},t={0:"�",128:"€",130:"‚",131:"ƒ",132:"„",133:"…",134:"†",135:"‡",136:"ˆ",137:"‰",138:"Š",139:"‹",140:"Œ",142:"Ž",145:"‘",146:"’",147:"“",148:"”",149:"•",150:"–",151:"—",152:"˜",153:"™",154:"š",155:"›",156:"œ",158:"ž",159:"Ÿ"},u=[1,2,3,4,5,6,7,8,11,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,64976,64977,64978,64979,64980,64981,64982,64983,64984,64985,64986,64987,64988,64989,64990,64991,64992,64993,64994,64995,64996,64997,64998,64999,65e3,65001,65002,65003,65004,65005,65006,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111],v=String.fromCharCode,w={},x=w.hasOwnProperty,y=function(a,b){return x.call(a,b)},z=function(a,b){for(var c=-1,d=a.length;++c<d;)if(a[c]==b)return!0;return!1},A=function(a,b){if(!a)return b;var c,d={};for(c in b)d[c]=y(a,c)?a[c]:b[c];return d},B=function(a,b){var c="";return a>=55296&&a<=57343||a>1114111?(b&&E("character reference outside the permissible Unicode range"),"�"):y(t,a)?(b&&E("disallowed character reference"),t[a]):(b&&z(u,a)&&E("disallowed character reference"),a>65535&&(a-=65536,c+=v(a>>>10&1023|55296),a=56320|1023&a),c+=v(a))},C=function(a){return"&#x"+a.toString(16).toUpperCase()+";"},D=function(a){return"&#"+a+";"},E=function(a){throw Error("Parse error: "+a)},F=function(a,b){b=A(b,F.options);var c=b.strict;c&&p.test(a)&&E("forbidden code point");var d=b.encodeEverything,e=b.useNamedReferences,f=b.allowUnsafeSymbols,g=b.decimal?D:C,n=function(a){return g(a.charCodeAt(0))};return d?(a=a.replace(i,function(a){return e&&y(l,a)?"&"+l[a]+";":n(a)}),e&&(a=a.replace(/&gt;\u20D2/g,"&nvgt;").replace(/&lt;\u20D2/g,"&nvlt;").replace(/&#x66;&#x6A;/g,"&fjlig;")),e&&(a=a.replace(k,function(a){return"&"+l[a]+";"}))):e?(f||(a=a.replace(m,function(a){return"&"+l[a]+";"})),a=a.replace(/&gt;\u20D2/g,"&nvgt;").replace(/&lt;\u20D2/g,"&nvlt;"),a=a.replace(k,function(a){return"&"+l[a]+";"})):f||(a=a.replace(m,n)),a.replace(h,function(a){var b=a.charCodeAt(0),c=a.charCodeAt(1),d=1024*(b-55296)+c-56320+65536;return g(d)}).replace(j,n)};F.options={allowUnsafeSymbols:!1,encodeEverything:!1,strict:!1,useNamedReferences:!1,decimal:!1};var G=function(a,b){b=A(b,G.options);var c=b.strict;return c&&o.test(a)&&E("malformed character reference"),a.replace(q,function(a,d,e,f,g,h,i,j){var k,l,m,n,o,p;return d?(m=d,l=e,c&&!l&&E("character reference was not terminated by a semicolon"),k=parseInt(m,10),B(k,c)):f?(n=f,l=g,c&&!l&&E("character reference was not terminated by a semicolon"),k=parseInt(n,16),B(k,c)):h?(o=h,y(r,o)?r[o]:(c&&E("named character reference was not terminated by a semicolon"),a)):(o=i,p=j,p&&b.isAttributeValue?(c&&"="==p&&E("`&` did not start a character reference"),a):(c&&E("named character reference was not terminated by a semicolon"),s[o]+(p||"")))})};G.options={isAttributeValue:!1,strict:!1};var H=function(a){return a.replace(m,function(a){return n[a]})},I={version:"1.1.1",encode:F,decode:G,escape:H,unescape:G};if("function"==typeof define&&"object"==typeof define.amd&&define.amd)define(function(){return I});else if(e&&!e.nodeType)if(f)f.exports=I;else for(var J in I)y(I,J)&&(e[J]=I[J]);else d.he=I}(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],102:[function(a,b,c){var d=a("http"),e=b.exports;for(var f in d)d.hasOwnProperty(f)&&(e[f]=d[f]);e.request=function(a,b){return a||(a={}),a.scheme="https",a.protocol="https:",d.request.call(this,a,b)}},{http:151}],103:[function(a,b,c){c.read=function(a,b,c,d,e){var f,g,h=8*e-d-1,i=(1<<h)-1,j=i>>1,k=-7,l=c?e-1:0,m=c?-1:1,n=a[b+l];for(l+=m,f=n&(1<<-k)-1,n>>=-k,k+=h;k>0;f=256*f+a[b+l],l+=m,k-=8);for(g=f&(1<<-k)-1,f>>=-k,k+=d;k>0;g=256*g+a[b+l],l+=m,k-=8);if(0===f)f=1-j;else{if(f===i)return g?NaN:(n?-1:1)*(1/0);g+=Math.pow(2,d),f-=j}return(n?-1:1)*g*Math.pow(2,f-d)},c.write=function(a,b,c,d,e,f){var g,h,i,j=8*f-e-1,k=(1<<j)-1,l=k>>1,m=23===e?Math.pow(2,-24)-Math.pow(2,-77):0,n=d?0:f-1,o=d?1:-1,p=b<0||0===b&&1/b<0?1:0;for(b=Math.abs(b),isNaN(b)||b===1/0?(h=isNaN(b)?1:0,g=k):(g=Math.floor(Math.log(b)/Math.LN2),b*(i=Math.pow(2,-g))<1&&(g--,i*=2),b+=g+l>=1?m/i:m*Math.pow(2,1-l),b*i>=2&&(g++,i/=2),g+l>=k?(h=0,g=k):g+l>=1?(h=(b*i-1)*Math.pow(2,e),g+=l):(h=b*Math.pow(2,l-1)*Math.pow(2,e),g=0));e>=8;a[c+n]=255&h,n+=o,h/=256,e-=8);for(g=g<<e|h,j+=e;j>0;a[c+n]=255&g,n+=o,g/=256,j-=8);a[c+n-o]|=128*p}},{}],104:[function(a,b,c){"function"==typeof Object.create?b.exports=function(a,b){a.super_=b,a.prototype=Object.create(b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}})}:b.exports=function(a,b){a.super_=b;var c=function(){};c.prototype=b.prototype,a.prototype=new c,a.prototype.constructor=a}},{}],105:[function(a,b,c){function d(a){return!!a.constructor&&"function"==typeof a.constructor.isBuffer&&a.constructor.isBuffer(a)}function e(a){return"function"==typeof a.readFloatLE&&"function"==typeof a.slice&&d(a.slice(0,0))}b.exports=function(a){return null!=a&&(d(a)||e(a)||!!a._isBuffer)}},{}],106:[function(a,b,c){var d={}.toString;b.exports=Array.isArray||function(a){return"[object Array]"==d.call(a)}},{}],107:[function(a,b,c){"use strict";function d(a){return a.source.slice(1,-1)}var e=a("xml-char-classes");b.exports=new RegExp("^["+d(e.letter)+"_]["+d(e.letter)+d(e.digit)+"\\.\\-_"+d(e.combiningChar)+d(e.extender)+"]*$")},{"xml-char-classes":164}],108:[function(a,b,c){c.endianness=function(){return"LE"},c.hostname=function(){return"undefined"!=typeof location?location.hostname:""},c.loadavg=function(){return[]},c.uptime=function(){return 0},c.freemem=function(){return Number.MAX_VALUE},c.totalmem=function(){return Number.MAX_VALUE},c.cpus=function(){return[]},c.type=function(){return"Browser"},c.release=function(){return"undefined"!=typeof navigator?navigator.appVersion:""},c.networkInterfaces=c.getNetworkInterfaces=function(){return{}},c.arch=function(){return"javascript"},c.platform=function(){return"browser"},c.tmpdir=c.tmpDir=function(){return"/tmp"},c.EOL="\n"},{}],109:[function(a,b,c){(function(a){function b(a,b){for(var c=0,d=a.length-1;d>=0;d--){var e=a[d];"."===e?a.splice(d,1):".."===e?(a.splice(d,1),c++):c&&(a.splice(d,1),c--)}if(b)for(;c--;c)a.unshift("..");return a}function d(a,b){if(a.filter)return a.filter(b);for(var c=[],d=0;d<a.length;d++)b(a[d],d,a)&&c.push(a[d]);return c}var e=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/,f=function(a){return e.exec(a).slice(1)};c.resolve=function(){for(var c="",e=!1,f=arguments.length-1;f>=-1&&!e;f--){var g=f>=0?arguments[f]:a.cwd();if("string"!=typeof g)throw new TypeError("Arguments to path.resolve must be strings");g&&(c=g+"/"+c,e="/"===g.charAt(0))}return c=b(d(c.split("/"),function(a){return!!a}),!e).join("/"),(e?"/":"")+c||"."},c.normalize=function(a){var e=c.isAbsolute(a),f="/"===g(a,-1);return a=b(d(a.split("/"),function(a){return!!a}),!e).join("/"),a||e||(a="."),a&&f&&(a+="/"),(e?"/":"")+a},c.isAbsolute=function(a){return"/"===a.charAt(0)},c.join=function(){var a=Array.prototype.slice.call(arguments,0);return c.normalize(d(a,function(a,b){if("string"!=typeof a)throw new TypeError("Arguments to path.join must be strings");return a}).join("/"))},c.relative=function(a,b){function d(a){for(var b=0;b<a.length&&""===a[b];b++);for(var c=a.length-1;c>=0&&""===a[c];c--);return b>c?[]:a.slice(b,c-b+1)}a=c.resolve(a).substr(1),b=c.resolve(b).substr(1);for(var e=d(a.split("/")),f=d(b.split("/")),g=Math.min(e.length,f.length),h=g,i=0;i<g;i++)if(e[i]!==f[i]){h=i;break}for(var j=[],i=h;i<e.length;i++)j.push("..");return j=j.concat(f.slice(h)),j.join("/")},c.sep="/",c.delimiter=":",c.dirname=function(a){var b=f(a),c=b[0],d=b[1];return c||d?(d&&(d=d.substr(0,d.length-1)),c+d):"."},c.basename=function(a,b){var c=f(a)[2];return b&&c.substr(-1*b.length)===b&&(c=c.substr(0,c.length-b.length)),c},c.extname=function(a){return f(a)[3]};var g="b"==="ab".substr(-1)?function(a,b,c){return a.substr(b,c)}:function(a,b,c){return b<0&&(b=a.length+b),a.substr(b,c)}}).call(this,a("_process"))},{_process:111}],110:[function(a,b,c){(function(a){"use strict";function c(b,c,d,e){if("function"!=typeof b)throw new TypeError('"callback" argument must be a function');var f,g,h=arguments.length;switch(h){case 0:case 1:return a.nextTick(b);case 2:return a.nextTick(function(){b.call(null,c)});case 3:return a.nextTick(function(){b.call(null,c,d)});case 4:return a.nextTick(function(){b.call(null,c,d,e)});default:for(f=new Array(h-1),g=0;g<f.length;)f[g++]=arguments[g];return a.nextTick(function(){b.apply(null,f)})}}!a.version||0===a.version.indexOf("v0.")||0===a.version.indexOf("v1.")&&0!==a.version.indexOf("v1.8.")?b.exports=c:b.exports=a.nextTick}).call(this,a("_process"))},{_process:111}],111:[function(a,b,c){function d(){throw new Error("setTimeout has not been defined")}function e(){throw new Error("clearTimeout has not been defined")}function f(a){if(l===setTimeout)return setTimeout(a,0);if((l===d||!l)&&setTimeout)return l=setTimeout,setTimeout(a,0);try{return l(a,0)}catch(b){try{return l.call(null,a,0)}catch(b){return l.call(this,a,0)}}}function g(a){if(m===clearTimeout)return clearTimeout(a);if((m===e||!m)&&clearTimeout)return m=clearTimeout,clearTimeout(a);try{return m(a)}catch(b){try{return m.call(null,a)}catch(b){return m.call(this,a)}}}function h(){q&&o&&(q=!1,o.length?p=o.concat(p):r=-1,p.length&&i())}function i(){if(!q){var a=f(h);q=!0;for(var b=p.length;b;){for(o=p,p=[];++r<b;)o&&o[r].run();r=-1,b=p.length}o=null,q=!1,g(a)}}function j(a,b){this.fun=a,this.array=b}function k(){}var l,m,n=b.exports={};!function(){try{l="function"==typeof setTimeout?setTimeout:d}catch(a){l=d}try{m="function"==typeof clearTimeout?clearTimeout:e}catch(a){m=e}}();var o,p=[],q=!1,r=-1;n.nextTick=function(a){var b=new Array(arguments.length-1);if(arguments.length>1)for(var c=1;c<arguments.length;c++)b[c-1]=arguments[c];p.push(new j(a,b)),1!==p.length||q||f(i)},j.prototype.run=function(){this.fun.apply(null,this.array)},n.title="browser",n.browser=!0,n.env={},n.argv=[],n.version="",n.versions={},n.on=k,n.addListener=k,n.once=k,n.off=k,n.removeListener=k,n.removeAllListeners=k,n.emit=k,n.binding=function(a){throw new Error("process.binding is not supported")},n.cwd=function(){return"/"},n.chdir=function(a){throw new Error("process.chdir is not supported")},n.umask=function(){return 0}},{}],112:[function(a,b,c){(function(a){!function(d){function e(a){throw new RangeError(H[a])}function f(a,b){for(var c=a.length,d=[];c--;)d[c]=b(a[c]);return d}function g(a,b){var c=a.split("@"),d="";c.length>1&&(d=c[0]+"@",a=c[1]),a=a.replace(G,".");var e=a.split("."),g=f(e,b).join(".");return d+g}function h(a){for(var b,c,d=[],e=0,f=a.length;e<f;)b=a.charCodeAt(e++),b>=55296&&b<=56319&&e<f?(c=a.charCodeAt(e++),56320==(64512&c)?d.push(((1023&b)<<10)+(1023&c)+65536):(d.push(b),e--)):d.push(b);return d}function i(a){return f(a,function(a){var b="";return a>65535&&(a-=65536,b+=K(a>>>10&1023|55296),a=56320|1023&a),b+=K(a)}).join("")}function j(a){return a-48<10?a-22:a-65<26?a-65:a-97<26?a-97:w}function k(a,b){return a+22+75*(a<26)-((0!=b)<<5)}function l(a,b,c){var d=0;for(a=c?J(a/A):a>>1,a+=J(a/b);a>I*y>>1;d+=w)a=J(a/I);return J(d+(I+1)*a/(a+z))}function m(a){var b,c,d,f,g,h,k,m,n,o,p=[],q=a.length,r=0,s=C,t=B;for(c=a.lastIndexOf(D),c<0&&(c=0),d=0;d<c;++d)a.charCodeAt(d)>=128&&e("not-basic"),p.push(a.charCodeAt(d));for(f=c>0?c+1:0;f<q;){for(g=r,h=1,k=w;f>=q&&e("invalid-input"),m=j(a.charCodeAt(f++)),(m>=w||m>J((v-r)/h))&&e("overflow"),r+=m*h,n=k<=t?x:k>=t+y?y:k-t,!(m<n);k+=w)o=w-n,h>J(v/o)&&e("overflow"),h*=o;b=p.length+1,t=l(r-g,b,0==g),J(r/b)>v-s&&e("overflow"),s+=J(r/b),r%=b,p.splice(r++,0,s)}return i(p)}function n(a){var b,c,d,f,g,i,j,m,n,o,p,q,r,s,t,u=[];for(a=h(a),q=a.length,b=C,c=0,g=B,i=0;i<q;++i)p=a[i],p<128&&u.push(K(p));for(d=f=u.length,f&&u.push(D);d<q;){for(j=v,i=0;i<q;++i)p=a[i],p>=b&&p<j&&(j=p);for(r=d+1,j-b>J((v-c)/r)&&e("overflow"),c+=(j-b)*r,b=j,i=0;i<q;++i)if(p=a[i],p<b&&++c>v&&e("overflow"),p==b){for(m=c,n=w;o=n<=g?x:n>=g+y?y:n-g,!(m<o);n+=w)t=m-o,s=w-o,u.push(K(k(o+t%s,0))),m=J(t/s);u.push(K(k(m,0))),g=l(c,r,d==f),c=0,++d}++c,++b}return u.join("")}function o(a){return g(a,function(a){return E.test(a)?m(a.slice(4).toLowerCase()):a})}function p(a){return g(a,function(a){return F.test(a)?"xn--"+n(a):a})}var q="object"==typeof c&&c&&!c.nodeType&&c,r="object"==typeof b&&b&&!b.nodeType&&b,s="object"==typeof a&&a;s.global!==s&&s.window!==s&&s.self!==s||(d=s);var t,u,v=2147483647,w=36,x=1,y=26,z=38,A=700,B=72,C=128,D="-",E=/^xn--/,F=/[^\x20-\x7E]/,G=/[\x2E\u3002\uFF0E\uFF61]/g,H={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},I=w-x,J=Math.floor,K=String.fromCharCode;if(t={version:"1.4.1",ucs2:{decode:h,encode:i},decode:m,encode:n,toASCII:p,toUnicode:o},"function"==typeof define&&"object"==typeof define.amd&&define.amd)define("punycode",function(){return t});else if(q&&r)if(b.exports==q)r.exports=t;else for(u in t)t.hasOwnProperty(u)&&(q[u]=t[u]);else d.punycode=t}(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],113:[function(a,b,c){"use strict";function d(a,b){return Object.prototype.hasOwnProperty.call(a,b)}b.exports=function(a,b,c,f){b=b||"&",c=c||"=";var g={};if("string"!=typeof a||0===a.length)return g;var h=/\+/g;a=a.split(b);var i=1e3;f&&"number"==typeof f.maxKeys&&(i=f.maxKeys);var j=a.length;i>0&&j>i&&(j=i);for(var k=0;k<j;++k){var l,m,n,o,p=a[k].replace(h,"%20"),q=p.indexOf(c);q>=0?(l=p.substr(0,q),m=p.substr(q+1)):(l=p,m=""),n=decodeURIComponent(l),o=decodeURIComponent(m),d(g,n)?e(g[n])?g[n].push(o):g[n]=[g[n],o]:g[n]=o}return g};var e=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)}},{}],114:[function(a,b,c){"use strict";function d(a,b){if(a.map)return a.map(b);for(var c=[],d=0;d<a.length;d++)c.push(b(a[d],d));return c}var e=function(a){switch(typeof a){case"string":return a;case"boolean":return a?"true":"false";case"number":return isFinite(a)?a:"";default:return""}};b.exports=function(a,b,c,h){return b=b||"&",c=c||"=",null===a&&(a=void 0),"object"==typeof a?d(g(a),function(g){var h=encodeURIComponent(e(g))+c;return f(a[g])?d(a[g],function(a){return h+encodeURIComponent(e(a))}).join(b):h+encodeURIComponent(e(a[g]))}).join(b):h?encodeURIComponent(e(h))+c+encodeURIComponent(e(a)):""};var f=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)},g=Object.keys||function(a){var b=[];for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.push(c);return b}},{}],115:[function(a,b,c){"use strict";c.decode=c.parse=a("./decode"),c.encode=c.stringify=a("./encode")},{"./decode":113,"./encode":114}],116:[function(a,b,c){"use strict";function d(a){return this instanceof d?(j.call(this,a),k.call(this,a),a&&a.readable===!1&&(this.readable=!1),a&&a.writable===!1&&(this.writable=!1),this.allowHalfOpen=!0,a&&a.allowHalfOpen===!1&&(this.allowHalfOpen=!1),void this.once("end",e)):new d(a)}function e(){this.allowHalfOpen||this._writableState.ended||h(f,this)}function f(a){a.end()}var g=Object.keys||function(a){var b=[];for(var c in a)b.push(c);return b};b.exports=d;var h=a("process-nextick-args"),i=a("core-util-is");i.inherits=a("inherits");var j=a("./_stream_readable"),k=a("./_stream_writable");i.inherits(d,j);for(var l=g(k.prototype),m=0;m<l.length;m++){var n=l[m];d.prototype[n]||(d.prototype[n]=k.prototype[n])}},{"./_stream_readable":118,"./_stream_writable":120,"core-util-is":99,inherits:104,"process-nextick-args":110}],117:[function(a,b,c){"use strict";function d(a){return this instanceof d?void e.call(this,a):new d(a)}b.exports=d;var e=a("./_stream_transform"),f=a("core-util-is");f.inherits=a("inherits"),f.inherits(d,e),d.prototype._transform=function(a,b,c){c(null,a)}},{"./_stream_transform":119,"core-util-is":99,inherits:104}],118:[function(a,b,c){(function(c){"use strict";function d(a,b,c){return"function"==typeof a.prependListener?a.prependListener(b,c):void(a._events&&a._events[b]?F(a._events[b])?a._events[b].unshift(c):a._events[b]=[c,a._events[b]]:a.on(b,c))}function e(b,c){D=D||a("./_stream_duplex"),b=b||{},this.objectMode=!!b.objectMode,c instanceof D&&(this.objectMode=this.objectMode||!!b.readableObjectMode);var d=b.highWaterMark,e=this.objectMode?16:16384;this.highWaterMark=d||0===d?d:e,this.highWaterMark=~~this.highWaterMark,this.buffer=new O,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.defaultEncoding=b.defaultEncoding||"utf8",this.ranOut=!1,this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,b.encoding&&(N||(N=a("string_decoder/").StringDecoder),this.decoder=new N(b.encoding),this.encoding=b.encoding)}function f(b){return D=D||a("./_stream_duplex"),this instanceof f?(this._readableState=new e(b,this),this.readable=!0,b&&"function"==typeof b.read&&(this._read=b.read),void G.call(this)):new f(b)}function g(a,b,c,d,e){var f=k(b,c);if(f)a.emit("error",f);else if(null===c)b.reading=!1,l(a,b);else if(b.objectMode||c&&c.length>0)if(b.ended&&!e){var g=new Error("stream.push() after EOF");a.emit("error",g)}else if(b.endEmitted&&e){var i=new Error("stream.unshift() after end event");a.emit("error",i)}else{var j;!b.decoder||e||d||(c=b.decoder.write(c),j=!b.objectMode&&0===c.length),e||(b.reading=!1),j||(b.flowing&&0===b.length&&!b.sync?(a.emit("data",c),a.read(0)):(b.length+=b.objectMode?1:c.length,e?b.buffer.unshift(c):b.buffer.push(c),b.needReadable&&m(a))),o(a,b)}else e||(b.reading=!1);return h(b)}function h(a){return!a.ended&&(a.needReadable||a.length<a.highWaterMark||0===a.length)}function i(a){return a>=P?a=P:(a--,a|=a>>>1,a|=a>>>2,a|=a>>>4,a|=a>>>8,a|=a>>>16,a++),a}function j(a,b){return a<=0||0===b.length&&b.ended?0:b.objectMode?1:a!==a?b.flowing&&b.length?b.buffer.head.data.length:b.length:(a>b.highWaterMark&&(b.highWaterMark=i(a)),a<=b.length?a:b.ended?b.length:(b.needReadable=!0,0))}function k(a,b){var c=null;return I.isBuffer(b)||"string"==typeof b||null===b||void 0===b||a.objectMode||(c=new TypeError("Invalid non-string/buffer chunk")),c}function l(a,b){if(!b.ended){if(b.decoder){var c=b.decoder.end();c&&c.length&&(b.buffer.push(c),b.length+=b.objectMode?1:c.length)}b.ended=!0,m(a)}}function m(a){var b=a._readableState;b.needReadable=!1,b.emittedReadable||(M("emitReadable",b.flowing),b.emittedReadable=!0,b.sync?E(n,a):n(a))}function n(a){M("emit readable"),a.emit("readable"),u(a)}function o(a,b){b.readingMore||(b.readingMore=!0,E(p,a,b))}function p(a,b){for(var c=b.length;!b.reading&&!b.flowing&&!b.ended&&b.length<b.highWaterMark&&(M("maybeReadMore read 0"),a.read(0),c!==b.length);)c=b.length;b.readingMore=!1}function q(a){return function(){var b=a._readableState;M("pipeOnDrain",b.awaitDrain),b.awaitDrain&&b.awaitDrain--,0===b.awaitDrain&&H(a,"data")&&(b.flowing=!0,u(a))}}function r(a){M("readable nexttick read 0"),a.read(0)}function s(a,b){b.resumeScheduled||(b.resumeScheduled=!0,E(t,a,b))}function t(a,b){b.reading||(M("resume read 0"),a.read(0)),b.resumeScheduled=!1,b.awaitDrain=0,a.emit("resume"),u(a),b.flowing&&!b.reading&&a.read(0)}function u(a){var b=a._readableState;for(M("flow",b.flowing);b.flowing&&null!==a.read(););}function v(a,b){if(0===b.length)return null;var c;return b.objectMode?c=b.buffer.shift():!a||a>=b.length?(c=b.decoder?b.buffer.join(""):1===b.buffer.length?b.buffer.head.data:b.buffer.concat(b.length),b.buffer.clear()):c=w(a,b.buffer,b.decoder),c}function w(a,b,c){var d;return a<b.head.data.length?(d=b.head.data.slice(0,a),b.head.data=b.head.data.slice(a)):d=a===b.head.data.length?b.shift():c?x(a,b):y(a,b),d}function x(a,b){var c=b.head,d=1,e=c.data;for(a-=e.length;c=c.next;){var f=c.data,g=a>f.length?f.length:a;if(e+=g===f.length?f:f.slice(0,a),a-=g,0===a){g===f.length?(++d,c.next?b.head=c.next:b.head=b.tail=null):(b.head=c,c.data=f.slice(g));break}++d}return b.length-=d,e}function y(a,b){var c=J.allocUnsafe(a),d=b.head,e=1;for(d.data.copy(c),a-=d.data.length;d=d.next;){var f=d.data,g=a>f.length?f.length:a;if(f.copy(c,c.length-a,0,g),a-=g,0===a){g===f.length?(++e,d.next?b.head=d.next:b.head=b.tail=null):(b.head=d,d.data=f.slice(g));break}++e}return b.length-=e,c}function z(a){var b=a._readableState;if(b.length>0)throw new Error('"endReadable()" called on non-empty stream');b.endEmitted||(b.ended=!0,E(A,b,a))}function A(a,b){a.endEmitted||0!==a.length||(a.endEmitted=!0,b.readable=!1,b.emit("end"))}function B(a,b){for(var c=0,d=a.length;c<d;c++)b(a[c],c)}function C(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1}b.exports=f;var D,E=a("process-nextick-args"),F=a("isarray");f.ReadableState=e;var G,H=(a("events").EventEmitter,function(a,b){return a.listeners(b).length});!function(){try{G=a("stream")}catch(a){}finally{G||(G=a("events").EventEmitter)}}();var I=a("buffer").Buffer,J=a("buffer-shims"),K=a("core-util-is");K.inherits=a("inherits");var L=a("util"),M=void 0;M=L&&L.debuglog?L.debuglog("stream"):function(){};var N,O=a("./internal/streams/BufferList");K.inherits(f,G),f.prototype.push=function(a,b){var c=this._readableState;return c.objectMode||"string"!=typeof a||(b=b||c.defaultEncoding,b!==c.encoding&&(a=J.from(a,b),b="")),g(this,c,a,b,!1)},f.prototype.unshift=function(a){var b=this._readableState;return g(this,b,a,"",!0)},f.prototype.isPaused=function(){return this._readableState.flowing===!1},f.prototype.setEncoding=function(b){return N||(N=a("string_decoder/").StringDecoder),this._readableState.decoder=new N(b),this._readableState.encoding=b,this};var P=8388608;f.prototype.read=function(a){M("read",a),a=parseInt(a,10);var b=this._readableState,c=a;if(0!==a&&(b.emittedReadable=!1),0===a&&b.needReadable&&(b.length>=b.highWaterMark||b.ended))return M("read: emitReadable",b.length,b.ended),0===b.length&&b.ended?z(this):m(this),null;if(a=j(a,b),0===a&&b.ended)return 0===b.length&&z(this),null;var d=b.needReadable;M("need readable",d),(0===b.length||b.length-a<b.highWaterMark)&&(d=!0,M("length less than watermark",d)),b.ended||b.reading?(d=!1,M("reading or ended",d)):d&&(M("do read"),b.reading=!0,b.sync=!0,0===b.length&&(b.needReadable=!0),this._read(b.highWaterMark),b.sync=!1,b.reading||(a=j(c,b)));var e;return e=a>0?v(a,b):null,null===e?(b.needReadable=!0,a=0):b.length-=a,0===b.length&&(b.ended||(b.needReadable=!0),c!==a&&b.ended&&z(this)),null!==e&&this.emit("data",e),e},f.prototype._read=function(a){this.emit("error",new Error("_read() is not implemented"))},f.prototype.pipe=function(a,b){function e(a){M("onunpipe"),a===m&&g()}function f(){M("onend"),a.end()}function g(){M("cleanup"),a.removeListener("close",j),a.removeListener("finish",k),a.removeListener("drain",r),a.removeListener("error",i),a.removeListener("unpipe",e),m.removeListener("end",f),m.removeListener("end",g),m.removeListener("data",h),s=!0,!n.awaitDrain||a._writableState&&!a._writableState.needDrain||r()}function h(b){M("ondata"),t=!1;var c=a.write(b);!1!==c||t||((1===n.pipesCount&&n.pipes===a||n.pipesCount>1&&C(n.pipes,a)!==-1)&&!s&&(M("false write response, pause",m._readableState.awaitDrain),m._readableState.awaitDrain++,t=!0),m.pause())}function i(b){M("onerror",b),l(),a.removeListener("error",i),0===H(a,"error")&&a.emit("error",b)}function j(){a.removeListener("finish",k),l()}function k(){M("onfinish"),a.removeListener("close",j),l()}function l(){M("unpipe"),
-m.unpipe(a)}var m=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=a;break;case 1:n.pipes=[n.pipes,a];break;default:n.pipes.push(a)}n.pipesCount+=1,M("pipe count=%d opts=%j",n.pipesCount,b);var o=(!b||b.end!==!1)&&a!==c.stdout&&a!==c.stderr,p=o?f:g;n.endEmitted?E(p):m.once("end",p),a.on("unpipe",e);var r=q(m);a.on("drain",r);var s=!1,t=!1;return m.on("data",h),d(a,"error",i),a.once("close",j),a.once("finish",k),a.emit("pipe",m),n.flowing||(M("pipe resume"),m.resume()),a},f.prototype.unpipe=function(a){var b=this._readableState;if(0===b.pipesCount)return this;if(1===b.pipesCount)return a&&a!==b.pipes?this:(a||(a=b.pipes),b.pipes=null,b.pipesCount=0,b.flowing=!1,a&&a.emit("unpipe",this),this);if(!a){var c=b.pipes,d=b.pipesCount;b.pipes=null,b.pipesCount=0,b.flowing=!1;for(var e=0;e<d;e++)c[e].emit("unpipe",this);return this}var f=C(b.pipes,a);return f===-1?this:(b.pipes.splice(f,1),b.pipesCount-=1,1===b.pipesCount&&(b.pipes=b.pipes[0]),a.emit("unpipe",this),this)},f.prototype.on=function(a,b){var c=G.prototype.on.call(this,a,b);if("data"===a)this._readableState.flowing!==!1&&this.resume();else if("readable"===a){var d=this._readableState;d.endEmitted||d.readableListening||(d.readableListening=d.needReadable=!0,d.emittedReadable=!1,d.reading?d.length&&m(this,d):E(r,this))}return c},f.prototype.addListener=f.prototype.on,f.prototype.resume=function(){var a=this._readableState;return a.flowing||(M("resume"),a.flowing=!0,s(this,a)),this},f.prototype.pause=function(){return M("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(M("pause"),this._readableState.flowing=!1,this.emit("pause")),this},f.prototype.wrap=function(a){var b=this._readableState,c=!1,d=this;a.on("end",function(){if(M("wrapped end"),b.decoder&&!b.ended){var a=b.decoder.end();a&&a.length&&d.push(a)}d.push(null)}),a.on("data",function(e){if(M("wrapped data"),b.decoder&&(e=b.decoder.write(e)),(!b.objectMode||null!==e&&void 0!==e)&&(b.objectMode||e&&e.length)){var f=d.push(e);f||(c=!0,a.pause())}});for(var e in a)void 0===this[e]&&"function"==typeof a[e]&&(this[e]=function(b){return function(){return a[b].apply(a,arguments)}}(e));var f=["error","close","destroy","pause","resume"];return B(f,function(b){a.on(b,d.emit.bind(d,b))}),d._read=function(b){M("wrapped _read",b),c&&(c=!1,a.resume())},d},f._fromList=v}).call(this,a("_process"))},{"./_stream_duplex":116,"./internal/streams/BufferList":121,_process:111,buffer:5,"buffer-shims":4,"core-util-is":99,events:100,inherits:104,isarray:106,"process-nextick-args":110,"string_decoder/":155,util:2}],119:[function(a,b,c){"use strict";function d(a){this.afterTransform=function(b,c){return e(a,b,c)},this.needTransform=!1,this.transforming=!1,this.writecb=null,this.writechunk=null,this.writeencoding=null}function e(a,b,c){var d=a._transformState;d.transforming=!1;var e=d.writecb;if(!e)return a.emit("error",new Error("no writecb in Transform class"));d.writechunk=null,d.writecb=null,null!==c&&void 0!==c&&a.push(c),e(b);var f=a._readableState;f.reading=!1,(f.needReadable||f.length<f.highWaterMark)&&a._read(f.highWaterMark)}function f(a){if(!(this instanceof f))return new f(a);h.call(this,a),this._transformState=new d(this);var b=this;this._readableState.needReadable=!0,this._readableState.sync=!1,a&&("function"==typeof a.transform&&(this._transform=a.transform),"function"==typeof a.flush&&(this._flush=a.flush)),this.once("prefinish",function(){"function"==typeof this._flush?this._flush(function(a,c){g(b,a,c)}):g(b)})}function g(a,b,c){if(b)return a.emit("error",b);null!==c&&void 0!==c&&a.push(c);var d=a._writableState,e=a._transformState;if(d.length)throw new Error("Calling transform done when ws.length != 0");if(e.transforming)throw new Error("Calling transform done when still transforming");return a.push(null)}b.exports=f;var h=a("./_stream_duplex"),i=a("core-util-is");i.inherits=a("inherits"),i.inherits(f,h),f.prototype.push=function(a,b){return this._transformState.needTransform=!1,h.prototype.push.call(this,a,b)},f.prototype._transform=function(a,b,c){throw new Error("_transform() is not implemented")},f.prototype._write=function(a,b,c){var d=this._transformState;if(d.writecb=c,d.writechunk=a,d.writeencoding=b,!d.transforming){var e=this._readableState;(d.needTransform||e.needReadable||e.length<e.highWaterMark)&&this._read(e.highWaterMark)}},f.prototype._read=function(a){var b=this._transformState;null!==b.writechunk&&b.writecb&&!b.transforming?(b.transforming=!0,this._transform(b.writechunk,b.writeencoding,b.afterTransform)):b.needTransform=!0}},{"./_stream_duplex":116,"core-util-is":99,inherits:104}],120:[function(a,b,c){(function(c){"use strict";function d(){}function e(a,b,c){this.chunk=a,this.encoding=b,this.callback=c,this.next=null}function f(b,c){x=x||a("./_stream_duplex"),b=b||{},this.objectMode=!!b.objectMode,c instanceof x&&(this.objectMode=this.objectMode||!!b.writableObjectMode);var d=b.highWaterMark,e=this.objectMode?16:16384;this.highWaterMark=d||0===d?d:e,this.highWaterMark=~~this.highWaterMark,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1;var f=b.decodeStrings===!1;this.decodeStrings=!f,this.defaultEncoding=b.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(a){o(c,a)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new w(this)}function g(b){return x=x||a("./_stream_duplex"),F.call(g,this)||this instanceof x?(this._writableState=new f(b,this),this.writable=!0,b&&("function"==typeof b.write&&(this._write=b.write),"function"==typeof b.writev&&(this._writev=b.writev)),void B.call(this)):new g(b)}function h(a,b){var c=new Error("write after end");a.emit("error",c),y(b,c)}function i(a,b,c,d){var e=!0,f=!1;return null===c?f=new TypeError("May not write null values to stream"):D.isBuffer(c)||"string"==typeof c||void 0===c||b.objectMode||(f=new TypeError("Invalid non-string/buffer chunk")),f&&(a.emit("error",f),y(d,f),e=!1),e}function j(a,b,c){return a.objectMode||a.decodeStrings===!1||"string"!=typeof b||(b=E.from(b,c)),b}function k(a,b,c,d,f){c=j(b,c,d),D.isBuffer(c)&&(d="buffer");var g=b.objectMode?1:c.length;b.length+=g;var h=b.length<b.highWaterMark;if(h||(b.needDrain=!0),b.writing||b.corked){var i=b.lastBufferedRequest;b.lastBufferedRequest=new e(c,d,f),i?i.next=b.lastBufferedRequest:b.bufferedRequest=b.lastBufferedRequest,b.bufferedRequestCount+=1}else l(a,b,!1,g,c,d,f);return h}function l(a,b,c,d,e,f,g){b.writelen=d,b.writecb=g,b.writing=!0,b.sync=!0,c?a._writev(e,b.onwrite):a._write(e,f,b.onwrite),b.sync=!1}function m(a,b,c,d,e){--b.pendingcb,c?y(e,d):e(d),a._writableState.errorEmitted=!0,a.emit("error",d)}function n(a){a.writing=!1,a.writecb=null,a.length-=a.writelen,a.writelen=0}function o(a,b){var c=a._writableState,d=c.sync,e=c.writecb;if(n(c),b)m(a,c,d,b,e);else{var f=s(c);f||c.corked||c.bufferProcessing||!c.bufferedRequest||r(a,c),d?z(p,a,c,f,e):p(a,c,f,e)}}function p(a,b,c,d){c||q(a,b),b.pendingcb--,d(),u(a,b)}function q(a,b){0===b.length&&b.needDrain&&(b.needDrain=!1,a.emit("drain"))}function r(a,b){b.bufferProcessing=!0;var c=b.bufferedRequest;if(a._writev&&c&&c.next){var d=b.bufferedRequestCount,e=new Array(d),f=b.corkedRequestsFree;f.entry=c;for(var g=0;c;)e[g]=c,c=c.next,g+=1;l(a,b,!0,b.length,e,"",f.finish),b.pendingcb++,b.lastBufferedRequest=null,f.next?(b.corkedRequestsFree=f.next,f.next=null):b.corkedRequestsFree=new w(b)}else{for(;c;){var h=c.chunk,i=c.encoding,j=c.callback,k=b.objectMode?1:h.length;if(l(a,b,!1,k,h,i,j),c=c.next,b.writing)break}null===c&&(b.lastBufferedRequest=null)}b.bufferedRequestCount=0,b.bufferedRequest=c,b.bufferProcessing=!1}function s(a){return a.ending&&0===a.length&&null===a.bufferedRequest&&!a.finished&&!a.writing}function t(a,b){b.prefinished||(b.prefinished=!0,a.emit("prefinish"))}function u(a,b){var c=s(b);return c&&(0===b.pendingcb?(t(a,b),b.finished=!0,a.emit("finish")):t(a,b)),c}function v(a,b,c){b.ending=!0,u(a,b),c&&(b.finished?y(c):a.once("finish",c)),b.ended=!0,a.writable=!1}function w(a){var b=this;this.next=null,this.entry=null,this.finish=function(c){var d=b.entry;for(b.entry=null;d;){var e=d.callback;a.pendingcb--,e(c),d=d.next}a.corkedRequestsFree?a.corkedRequestsFree.next=b:a.corkedRequestsFree=b}}b.exports=g;var x,y=a("process-nextick-args"),z=!c.browser&&["v0.10","v0.9."].indexOf(c.version.slice(0,5))>-1?setImmediate:y;g.WritableState=f;var A=a("core-util-is");A.inherits=a("inherits");var B,C={deprecate:a("util-deprecate")};!function(){try{B=a("stream")}catch(a){}finally{B||(B=a("events").EventEmitter)}}();var D=a("buffer").Buffer,E=a("buffer-shims");A.inherits(g,B),f.prototype.getBuffer=function(){for(var a=this.bufferedRequest,b=[];a;)b.push(a),a=a.next;return b},function(){try{Object.defineProperty(f.prototype,"buffer",{get:C.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.")})}catch(a){}}();var F;"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(F=Function.prototype[Symbol.hasInstance],Object.defineProperty(g,Symbol.hasInstance,{value:function(a){return!!F.call(this,a)||a&&a._writableState instanceof f}})):F=function(a){return a instanceof this},g.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},g.prototype.write=function(a,b,c){var e=this._writableState,f=!1;return"function"==typeof b&&(c=b,b=null),D.isBuffer(a)?b="buffer":b||(b=e.defaultEncoding),"function"!=typeof c&&(c=d),e.ended?h(this,c):i(this,e,a,c)&&(e.pendingcb++,f=k(this,e,a,b,c)),f},g.prototype.cork=function(){var a=this._writableState;a.corked++},g.prototype.uncork=function(){var a=this._writableState;a.corked&&(a.corked--,a.writing||a.corked||a.finished||a.bufferProcessing||!a.bufferedRequest||r(this,a))},g.prototype.setDefaultEncoding=function(a){if("string"==typeof a&&(a=a.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((a+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+a);return this._writableState.defaultEncoding=a,this},g.prototype._write=function(a,b,c){c(new Error("_write() is not implemented"))},g.prototype._writev=null,g.prototype.end=function(a,b,c){var d=this._writableState;"function"==typeof a?(c=a,a=null,b=null):"function"==typeof b&&(c=b,b=null),null!==a&&void 0!==a&&this.write(a,b),d.corked&&(d.corked=1,this.uncork()),d.ending||d.finished||v(this,d,c)}}).call(this,a("_process"))},{"./_stream_duplex":116,_process:111,buffer:5,"buffer-shims":4,"core-util-is":99,events:100,inherits:104,"process-nextick-args":110,"util-deprecate":160}],121:[function(a,b,c){"use strict";function d(){this.head=null,this.tail=null,this.length=0}var e=(a("buffer").Buffer,a("buffer-shims"));b.exports=d,d.prototype.push=function(a){var b={data:a,next:null};this.length>0?this.tail.next=b:this.head=b,this.tail=b,++this.length},d.prototype.unshift=function(a){var b={data:a,next:this.head};0===this.length&&(this.tail=b),this.head=b,++this.length},d.prototype.shift=function(){if(0!==this.length){var a=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,a}},d.prototype.clear=function(){this.head=this.tail=null,this.length=0},d.prototype.join=function(a){if(0===this.length)return"";for(var b=this.head,c=""+b.data;b=b.next;)c+=a+b.data;return c},d.prototype.concat=function(a){if(0===this.length)return e.alloc(0);if(1===this.length)return this.head.data;for(var b=e.allocUnsafe(a>>>0),c=this.head,d=0;c;)c.data.copy(b,d),d+=c.data.length,c=c.next;return b}},{buffer:5,"buffer-shims":4}],122:[function(a,b,c){(function(d){var e=function(){try{return a("stream")}catch(a){}}();c=b.exports=a("./lib/_stream_readable.js"),c.Stream=e||c,c.Readable=c,c.Writable=a("./lib/_stream_writable.js"),c.Duplex=a("./lib/_stream_duplex.js"),c.Transform=a("./lib/_stream_transform.js"),c.PassThrough=a("./lib/_stream_passthrough.js"),!d.browser&&"disable"===d.env.READABLE_STREAM&&e&&(b.exports=e)}).call(this,a("_process"))},{"./lib/_stream_duplex.js":116,"./lib/_stream_passthrough.js":117,"./lib/_stream_readable.js":118,"./lib/_stream_transform.js":119,"./lib/_stream_writable.js":120,_process:111}],123:[function(a,b,c){"use strict";b.exports={ABSOLUTE:"absolute",PATH_RELATIVE:"pathRelative",ROOT_RELATIVE:"rootRelative",SHORTEST:"shortest"}},{}],124:[function(a,b,c){"use strict";function d(a,b){return!a.auth||b.removeAuth||!a.extra.relation.maximumHost&&b.output!==p.ABSOLUTE?"":a.auth+"@"}function e(a,b){return a.hash?a.hash:""}function f(a,b){return a.host.full&&(a.extra.relation.maximumAuth||b.output===p.ABSOLUTE)?a.host.full:""}function g(a,b){var c="",d=a.path.absolute.string,e=a.path.relative.string,f=o(a,b);if(a.extra.relation.maximumHost||b.output===p.ABSOLUTE||b.output===p.ROOT_RELATIVE)c=d;else if(e.length<=d.length&&b.output===p.SHORTEST||b.output===p.PATH_RELATIVE){if(c=e,""===c){var g=n(a,b)&&!!m(a,b);a.extra.relation.maximumPath&&!f?c="./":!a.extra.relation.overridesQuery||f||g||(c="./")}}else c=d;return"/"!==c||f||!b.removeRootTrailingSlash||a.extra.relation.minimumPort&&b.output!==p.ABSOLUTE||(c=""),c}function h(a,b){return a.port&&!a.extra.portIsDefault&&a.extra.relation.maximumHost?":"+a.port:""}function i(a,b){return n(a,b)?m(a,b):""}function j(a,b){return o(a,b)?a.resource:""}function k(a,b){var c="";return(a.extra.relation.maximumHost||b.output===p.ABSOLUTE)&&(c+=a.extra.relation.minimumScheme&&b.schemeRelative&&b.output!==p.ABSOLUTE?"//":a.scheme+"://"),c}function l(a,b){var c="";return c+=k(a,b),c+=d(a,b),c+=f(a,b),c+=h(a,b),c+=g(a,b),c+=j(a,b),c+=i(a,b),c+=e(a,b)}function m(a,b){var c=b.removeEmptyQueries&&a.extra.relation.minimumPort;return a.query.string[c?"stripped":"full"]}function n(a,b){return!a.extra.relation.minimumQuery||b.output===p.ABSOLUTE||b.output===p.ROOT_RELATIVE}function o(a,b){var c=b.removeDirectoryIndexes&&a.extra.resourceIsIndex,d=a.extra.relation.minimumResource&&b.output!==p.ABSOLUTE&&b.output!==p.ROOT_RELATIVE;return!!a.resource&&!d&&!c}var p=a("./constants");b.exports=l},{"./constants":123}],125:[function(a,b,c){"use strict";function d(a,b){this.options=g(b,{defaultPorts:{ftp:21,http:80,https:443},directoryIndexes:["index.html"],ignore_www:!1,output:d.SHORTEST,rejectedSchemes:["data","javascript","mailto"],removeAuth:!1,removeDirectoryIndexes:!0,removeEmptyQueries:!1,removeRootTrailingSlash:!0,schemeRelative:!0,site:void 0,slashesDenoteHost:!0}),this.from=i.from(a,this.options,null)}var e=a("./constants"),f=a("./format"),g=a("./options"),h=a("./util/object"),i=a("./parse"),j=a("./relate");d.prototype.relate=function(a,b,c){if(h.isPlainObject(b)?(c=b,b=a,a=null):b||(b=a,a=null),c=g(c,this.options),a=a||c.site,a=i.from(a,c,this.from),!a||!a.href)throw new Error("from value not defined.");if(a.extra.hrefInfo.minimumPathOnly)throw new Error("from value supplied is not absolute: "+a.href);return b=i.to(b,c),b.valid===!1?b.href:(b=j(a,b,c),b=f(b,c))},d.relate=function(a,b,c){return(new d).relate(a,b,c)},h.shallowMerge(d,e),b.exports=d},{"./constants":123,"./format":124,"./options":126,"./parse":129,"./relate":136,"./util/object":138}],126:[function(a,b,c){"use strict";function d(a,b){if(f.isPlainObject(a)){var c={};for(var d in b)b.hasOwnProperty(d)&&(void 0!==a[d]?c[d]=e(a[d],b[d]):c[d]=b[d]);return c}return b}function e(a,b){return b instanceof Object&&a instanceof Object?b instanceof Array&&a instanceof Array?b.concat(a):f.shallowMerge(a,b):a}var f=a("./util/object");b.exports=d},{"./util/object":138}],127:[function(a,b,c){"use strict";function d(a,b){if(b.ignore_www){var c=a.host.full;if(c){var d=c;0===c.indexOf("www.")&&(d=c.substr(4)),a.host.stripped=d}}}b.exports=d},{}],128:[function(a,b,c){"use strict";function d(a){var b=!(a.scheme||a.auth||a.host.full||a.port),c=b&&!a.path.absolute.string,d=c&&!a.resource,e=d&&!a.query.string.full.length,f=e&&!a.hash;a.extra.hrefInfo.minimumPathOnly=b,a.extra.hrefInfo.minimumResourceOnly=c,a.extra.hrefInfo.minimumQueryOnly=d,a.extra.hrefInfo.minimumHashOnly=e,a.extra.hrefInfo.empty=f}b.exports=d},{}],129:[function(a,b,c){"use strict";function d(a,b,c){if(a){var d=e(a,b),f=l.resolveDotSegments(d.path.absolute.array);return d.path.absolute.array=f,d.path.absolute.string="/"+l.join(f),d}return c}function e(a,b){var c=k(a,b);return c.valid===!1?c:(g(c,b),i(c,b),h(c,b),j(c,b),f(c),c)}var f=a("./hrefInfo"),g=a("./host"),h=a("./path"),i=a("./port"),j=a("./query"),k=a("./urlstring"),l=a("../util/path");b.exports={from:d,to:e}},{"../util/path":139,"./host":127,"./hrefInfo":128,"./path":130,"./port":131,"./query":132,"./urlstring":133}],130:[function(a,b,c){"use strict";function d(a,b){var c=!1;return b.directoryIndexes.every(function(b){return b!==a||(c=!0,!1)}),c}function e(a,b){var c=a.path.absolute.string;if(c){var e=c.lastIndexOf("/");if(e>-1){if(++e<c.length){var g=c.substr(e);"."!==g&&".."!==g?(a.resource=g,c=c.substr(0,e)):c+="/"}a.path.absolute.string=c,a.path.absolute.array=f(c)}else"."===c||".."===c?(c+="/",a.path.absolute.string=c,a.path.absolute.array=f(c)):(a.resource=c,a.path.absolute.string=null);a.extra.resourceIsIndex=d(a.resource,b)}}function f(a){if("/"!==a){var b=[];return a.split("/").forEach(function(a){""!==a&&b.push(a)}),b}return[]}b.exports=e},{}],131:[function(a,b,c){"use strict";function d(a,b){var c=-1;for(var d in b.defaultPorts)if(d===a.scheme&&b.defaultPorts.hasOwnProperty(d)){c=b.defaultPorts[d];break}c>-1&&(c=c.toString(),null===a.port&&(a.port=c),a.extra.portIsDefault=a.port===c)}b.exports=d},{}],132:[function(a,b,c){"use strict";function d(a,b){a.query.string.full=e(a.query.object,!1),b.removeEmptyQueries&&(a.query.string.stripped=e(a.query.object,!0))}function e(a,b){var c=0,d="";for(var e in a)if(""!==e&&f.call(a,e)===!0){var g=a[e];""===g&&b||(d+=1===++c?"?":"&",e=encodeURIComponent(e),d+=""!==g?e+"="+encodeURIComponent(g).replace(/%20/g,"+"):e)}return d}var f=Object.prototype.hasOwnProperty;b.exports=d},{}],133:[function(a,b,c){"use strict";function d(a){var b=a.protocol;return b&&b.indexOf(":")===b.length-1&&(b=b.substr(0,b.length-1)),a.host={full:a.hostname,stripped:null},a.path={absolute:{array:null,string:a.pathname},relative:{array:null,string:null}},a.query={object:a.query,string:{full:null,stripped:null}},a.extra={hrefInfo:{minimumPathOnly:null,minimumResourceOnly:null,minimumQueryOnly:null,minimumHashOnly:null,empty:null,separatorOnlyQuery:"?"===a.search},portIsDefault:null,relation:{maximumScheme:null,maximumAuth:null,maximumHost:null,maximumPort:null,maximumPath:null,maximumResource:null,maximumQuery:null,maximumHash:null,minimumScheme:null,minimumAuth:null,minimumHost:null,minimumPort:null,minimumPath:null,minimumResource:null,minimumQuery:null,minimumHash:null,overridesQuery:null},resourceIsIndex:null,slashes:a.slashes},a.resource=null,a.scheme=b,delete a.hostname,delete a.pathname,delete a.protocol,delete a.search,delete a.slashes,a}function e(a,b){var c=!0;return b.rejectedSchemes.every(function(b){return c=!(0===a.indexOf(b+":"))}),c}function f(a,b){return e(a,b)?d(g(a,!0,b.slashesDenoteHost)):{href:a,valid:!1}}var g=a("url").parse;b.exports=f},{url:158}],134:[function(a,b,c){"use strict";function d(a,b,c){h.upToPath(a,b,c),a.extra.relation.minimumScheme&&(a.scheme=b.scheme),a.extra.relation.minimumAuth&&(a.auth=b.auth),a.extra.relation.minimumHost&&(a.host=i.clone(b.host)),a.extra.relation.minimumPort&&f(a,b),a.extra.relation.minimumScheme&&e(a,b),h.pathOn(a,b,c),a.extra.relation.minimumResource&&g(a,b),a.extra.relation.minimumQuery&&(a.query=i.clone(b.query)),a.extra.relation.minimumHash&&(a.hash=b.hash)}function e(a,b){if(a.extra.relation.maximumHost||!a.extra.hrefInfo.minimumResourceOnly){var c=a.path.absolute.array,d="/";c?(a.extra.hrefInfo.minimumPathOnly&&0!==a.path.absolute.string.indexOf("/")&&(c=b.path.absolute.array.concat(c)),c=j.resolveDotSegments(c),d+=j.join(c)):c=[],a.path.absolute.array=c,a.path.absolute.string=d}else a.path=i.clone(b.path)}function f(a,b){a.port=b.port,a.extra.portIsDefault=b.extra.portIsDefault}function g(a,b){a.resource=b.resource,a.extra.resourceIsIndex=b.extra.resourceIsIndex}var h=a("./findRelation"),i=a("../util/object"),j=a("../util/path");b.exports=d},{"../util/object":138,"../util/path":139,"./findRelation":135}],135:[function(a,b,c){"use strict";function d(a,b,c){var d=a.extra.hrefInfo.minimumPathOnly,e=a.scheme===b.scheme||!a.scheme,f=e&&(a.auth===b.auth||c.removeAuth||d),g=c.ignore_www?"stripped":"full",h=f&&(a.host[g]===b.host[g]||d),i=h&&(a.port===b.port||d);a.extra.relation.minimumScheme=e,a.extra.relation.minimumAuth=f,a.extra.relation.minimumHost=h,a.extra.relation.minimumPort=i,a.extra.relation.maximumScheme=!e||e&&!f,a.extra.relation.maximumAuth=!e||e&&!h,a.extra.relation.maximumHost=!e||e&&!i}function e(a,b,c){var d=a.extra.hrefInfo.minimumQueryOnly,e=a.extra.hrefInfo.minimumHashOnly,f=a.extra.hrefInfo.empty,g=a.extra.relation.minimumPort,h=a.extra.relation.minimumScheme,i=g&&a.path.absolute.string===b.path.absolute.string,j=a.resource===b.resource||!a.resource&&b.extra.resourceIsIndex||c.removeDirectoryIndexes&&a.extra.resourceIsIndex&&!b.resource,k=i&&(j||d||e||f),l=c.removeEmptyQueries?"stripped":"full",m=a.query.string[l],n=b.query.string[l],o=k&&!!m&&m===n||(e||f)&&!a.extra.hrefInfo.separatorOnlyQuery,p=o&&a.hash===b.hash;a.extra.relation.minimumPath=i,a.extra.relation.minimumResource=k,a.extra.relation.minimumQuery=o,a.extra.relation.minimumHash=p,a.extra.relation.maximumPort=!h||h&&!i,a.extra.relation.maximumPath=!h||h&&!k,a.extra.relation.maximumResource=!h||h&&!o,a.extra.relation.maximumQuery=!h||h&&!p,a.extra.relation.maximumHash=!h||h&&!p,a.extra.relation.overridesQuery=i&&a.extra.relation.maximumResource&&!o&&!!n}b.exports={pathOn:e,upToPath:d}},{}],136:[function(a,b,c){"use strict";function d(a,b,c){return e(b,a,c),f(b,a,c),b}var e=a("./absolutize"),f=a("./relativize");b.exports=d},{"./absolutize":134,"./relativize":137}],137:[function(a,b,c){"use strict";function d(a,b){var c=[],d=!0,e=-1;return b.forEach(function(b,f){d&&(a[f]!==b?d=!1:e=f),d||c.push("..")}),a.forEach(function(a,b){b>e&&c.push(a)}),c}function e(a,b,c){if(a.extra.relation.minimumScheme){var e=d(a.path.absolute.array,b.path.absolute.array);a.path.relative.array=e,a.path.relative.string=f.join(e)}}var f=a("../util/path");b.exports=e},{"../util/path":139}],138:[function(a,b,c){"use strict";function d(a){if(a instanceof Object){var b=a instanceof Array?[]:{};for(var c in a)a.hasOwnProperty(c)&&(b[c]=d(a[c]));return b}return a}function e(a){return!!a&&"object"==typeof a&&a.constructor===Object}function f(a,b){if(a instanceof Object&&b instanceof Object)for(var c in b)b.hasOwnProperty(c)&&(a[c]=b[c]);return a}b.exports={clone:d,isPlainObject:e,shallowMerge:f}},{}],139:[function(a,b,c){"use strict";function d(a){return a.length>0?a.join("/")+"/":""}function e(a){var b=[];return a.forEach(function(a){".."!==a?"."!==a&&b.push(a):b.length>0&&b.splice(b.length-1,1)}),b}b.exports={join:d,resolveDotSegments:e}},{}],140:[function(a,b,c){function d(){this._array=[],this._set=Object.create(null)}var e=a("./util"),f=Object.prototype.hasOwnProperty;d.fromArray=function(a,b){for(var c=new d,e=0,f=a.length;e<f;e++)c.add(a[e],b);return c},d.prototype.size=function(){return Object.getOwnPropertyNames(this._set).length},d.prototype.add=function(a,b){var c=e.toSetString(a),d=f.call(this._set,c),g=this._array.length;d&&!b||this._array.push(a),d||(this._set[c]=g)},d.prototype.has=function(a){var b=e.toSetString(a);return f.call(this._set,b)},d.prototype.indexOf=function(a){var b=e.toSetString(a);if(f.call(this._set,b))return this._set[b];throw new Error('"'+a+'" is not in the set.')},d.prototype.at=function(a){if(a>=0&&a<this._array.length)return this._array[a];throw new Error("No element indexed by "+a)},d.prototype.toArray=function(){return this._array.slice()},c.ArraySet=d},{"./util":149}],141:[function(a,b,c){function d(a){return a<0?(-a<<1)+1:(a<<1)+0}function e(a){var b=1===(1&a),c=a>>1;return b?-c:c}var f=a("./base64"),g=5,h=1<<g,i=h-1,j=h;c.encode=function(a){var b,c="",e=d(a);do b=e&i,e>>>=g,e>0&&(b|=j),c+=f.encode(b);while(e>0);return c},c.decode=function(a,b,c){var d,h,k=a.length,l=0,m=0;do{if(b>=k)throw new Error("Expected more digits in base 64 VLQ value.");if(h=f.decode(a.charCodeAt(b++)),h===-1)throw new Error("Invalid base64 digit: "+a.charAt(b-1));d=!!(h&j),h&=i,l+=h<<m,m+=g}while(d);c.value=e(l),c.rest=b}},{"./base64":142}],142:[function(a,b,c){var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");c.encode=function(a){if(0<=a&&a<d.length)return d[a];throw new TypeError("Must be between 0 and 63: "+a)},c.decode=function(a){var b=65,c=90,d=97,e=122,f=48,g=57,h=43,i=47,j=26,k=52;return b<=a&&a<=c?a-b:d<=a&&a<=e?a-d+j:f<=a&&a<=g?a-f+k:a==h?62:a==i?63:-1}},{}],143:[function(a,b,c){function d(a,b,e,f,g,h){var i=Math.floor((b-a)/2)+a,j=g(e,f[i],!0);return 0===j?i:j>0?b-i>1?d(i,b,e,f,g,h):h==c.LEAST_UPPER_BOUND?b<f.length?b:-1:i:i-a>1?d(a,i,e,f,g,h):h==c.LEAST_UPPER_BOUND?i:a<0?-1:a}c.GREATEST_LOWER_BOUND=1,c.LEAST_UPPER_BOUND=2,c.search=function(a,b,e,f){if(0===b.length)return-1;var g=d(-1,b.length,a,b,e,f||c.GREATEST_LOWER_BOUND);if(g<0)return-1;for(;g-1>=0&&0===e(b[g],b[g-1],!0);)--g;return g}},{}],144:[function(a,b,c){function d(a,b){var c=a.generatedLine,d=b.generatedLine,e=a.generatedColumn,g=b.generatedColumn;return d>c||d==c&&g>=e||f.compareByGeneratedPositionsInflated(a,b)<=0}function e(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}var f=a("./util");e.prototype.unsortedForEach=function(a,b){this._array.forEach(a,b)},e.prototype.add=function(a){d(this._last,a)?(this._last=a,this._array.push(a)):(this._sorted=!1,this._array.push(a))},e.prototype.toArray=function(){return this._sorted||(this._array.sort(f.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},c.MappingList=e},{"./util":149}],145:[function(a,b,c){function d(a,b,c){var d=a[b];a[b]=a[c],a[c]=d}function e(a,b){return Math.round(a+Math.random()*(b-a))}function f(a,b,c,g){if(c<g){var h=e(c,g),i=c-1;d(a,h,g);for(var j=a[g],k=c;k<g;k++)b(a[k],j)<=0&&(i+=1,d(a,i,k));d(a,i+1,k);var l=i+1;f(a,b,c,l-1),f(a,b,l+1,g)}}c.quickSort=function(a,b){f(a,b,0,a.length-1)}},{}],146:[function(a,b,c){function d(a){var b=a;return"string"==typeof a&&(b=JSON.parse(a.replace(/^\)\]\}'/,""))),null!=b.sections?new g(b):new e(b)}function e(a){var b=a;"string"==typeof a&&(b=JSON.parse(a.replace(/^\)\]\}'/,"")));var c=h.getArg(b,"version"),d=h.getArg(b,"sources"),e=h.getArg(b,"names",[]),f=h.getArg(b,"sourceRoot",null),g=h.getArg(b,"sourcesContent",null),i=h.getArg(b,"mappings"),k=h.getArg(b,"file",null);if(c!=this._version)throw new Error("Unsupported version: "+c);d=d.map(String).map(h.normalize).map(function(a){return f&&h.isAbsolute(f)&&h.isAbsolute(a)?h.relative(f,a):a}),this._names=j.fromArray(e.map(String),!0),this._sources=j.fromArray(d,!0),this.sourceRoot=f,this.sourcesContent=g,this._mappings=i,this.file=k}function f(){this.generatedLine=0,this.generatedColumn=0,this.source=null,this.originalLine=null,this.originalColumn=null,this.name=null}function g(a){var b=a;"string"==typeof a&&(b=JSON.parse(a.replace(/^\)\]\}'/,"")));var c=h.getArg(b,"version"),e=h.getArg(b,"sections");if(c!=this._version)throw new Error("Unsupported version: "+c);this._sources=new j,this._names=new j;var f={line:-1,column:0};this._sections=e.map(function(a){if(a.url)throw new Error("Support for url field in sections not implemented.");var b=h.getArg(a,"offset"),c=h.getArg(b,"line"),e=h.getArg(b,"column");if(c<f.line||c===f.line&&e<f.column)throw new Error("Section offsets must be ordered and non-overlapping.");return f=b,{generatedOffset:{generatedLine:c+1,generatedColumn:e+1},consumer:new d(h.getArg(a,"map"))}})}var h=a("./util"),i=a("./binary-search"),j=a("./array-set").ArraySet,k=a("./base64-vlq"),l=a("./quick-sort").quickSort;d.fromSourceMap=function(a){return e.fromSourceMap(a)},d.prototype._version=3,d.prototype.__generatedMappings=null,Object.defineProperty(d.prototype,"_generatedMappings",{get:function(){return this.__generatedMappings||this._parseMappings(this._mappings,this.sourceRoot),this.__generatedMappings}}),d.prototype.__originalMappings=null,Object.defineProperty(d.prototype,"_originalMappings",{get:function(){return this.__originalMappings||this._parseMappings(this._mappings,this.sourceRoot),this.__originalMappings}}),d.prototype._charIsMappingSeparator=function(a,b){var c=a.charAt(b);return";"===c||","===c},d.prototype._parseMappings=function(a,b){throw new Error("Subclasses must implement _parseMappings")},d.GENERATED_ORDER=1,d.ORIGINAL_ORDER=2,d.GREATEST_LOWER_BOUND=1,d.LEAST_UPPER_BOUND=2,d.prototype.eachMapping=function(a,b,c){var e,f=b||null,g=c||d.GENERATED_ORDER;switch(g){case d.GENERATED_ORDER:e=this._generatedMappings;break;case d.ORIGINAL_ORDER:e=this._originalMappings;break;default:throw new Error("Unknown order of iteration.")}var i=this.sourceRoot;e.map(function(a){var b=null===a.source?null:this._sources.at(a.source);return null!=b&&null!=i&&(b=h.join(i,b)),{source:b,generatedLine:a.generatedLine,generatedColumn:a.generatedColumn,originalLine:a.originalLine,originalColumn:a.originalColumn,name:null===a.name?null:this._names.at(a.name)}},this).forEach(a,f)},d.prototype.allGeneratedPositionsFor=function(a){var b=h.getArg(a,"line"),c={source:h.getArg(a,"source"),originalLine:b,originalColumn:h.getArg(a,"column",0)};if(null!=this.sourceRoot&&(c.source=h.relative(this.sourceRoot,c.source)),!this._sources.has(c.source))return[];c.source=this._sources.indexOf(c.source);var d=[],e=this._findMapping(c,this._originalMappings,"originalLine","originalColumn",h.compareByOriginalPositions,i.LEAST_UPPER_BOUND);if(e>=0){var f=this._originalMappings[e];if(void 0===a.column)for(var g=f.originalLine;f&&f.originalLine===g;)d.push({line:h.getArg(f,"generatedLine",null),column:h.getArg(f,"generatedColumn",null),lastColumn:h.getArg(f,"lastGeneratedColumn",null)}),f=this._originalMappings[++e];else for(var j=f.originalColumn;f&&f.originalLine===b&&f.originalColumn==j;)d.push({line:h.getArg(f,"generatedLine",null),column:h.getArg(f,"generatedColumn",null),lastColumn:h.getArg(f,"lastGeneratedColumn",null)}),f=this._originalMappings[++e]}return d},c.SourceMapConsumer=d,e.prototype=Object.create(d.prototype),e.prototype.consumer=d,e.fromSourceMap=function(a){var b=Object.create(e.prototype),c=b._names=j.fromArray(a._names.toArray(),!0),d=b._sources=j.fromArray(a._sources.toArray(),!0);b.sourceRoot=a._sourceRoot,b.sourcesContent=a._generateSourcesContent(b._sources.toArray(),b.sourceRoot),b.file=a._file;for(var g=a._mappings.toArray().slice(),i=b.__generatedMappings=[],k=b.__originalMappings=[],m=0,n=g.length;m<n;m++){var o=g[m],p=new f;p.generatedLine=o.generatedLine,p.generatedColumn=o.generatedColumn,o.source&&(p.source=d.indexOf(o.source),p.originalLine=o.originalLine,p.originalColumn=o.originalColumn,o.name&&(p.name=c.indexOf(o.name)),k.push(p)),i.push(p)}return l(b.__originalMappings,h.compareByOriginalPositions),b},e.prototype._version=3,Object.defineProperty(e.prototype,"sources",{get:function(){return this._sources.toArray().map(function(a){return null!=this.sourceRoot?h.join(this.sourceRoot,a):a},this)}}),e.prototype._parseMappings=function(a,b){for(var c,d,e,g,i,j=1,m=0,n=0,o=0,p=0,q=0,r=a.length,s=0,t={},u={},v=[],w=[];s<r;)if(";"===a.charAt(s))j++,s++,m=0;else if(","===a.charAt(s))s++;else{for(c=new f,c.generatedLine=j,g=s;g<r&&!this._charIsMappingSeparator(a,g);g++);if(d=a.slice(s,g),e=t[d])s+=d.length;else{for(e=[];s<g;)k.decode(a,s,u),i=u.value,s=u.rest,e.push(i);if(2===e.length)throw new Error("Found a source, but no line and column");if(3===e.length)throw new Error("Found a source and line, but no column");t[d]=e}c.generatedColumn=m+e[0],
-m=c.generatedColumn,e.length>1&&(c.source=p+e[1],p+=e[1],c.originalLine=n+e[2],n=c.originalLine,c.originalLine+=1,c.originalColumn=o+e[3],o=c.originalColumn,e.length>4&&(c.name=q+e[4],q+=e[4])),w.push(c),"number"==typeof c.originalLine&&v.push(c)}l(w,h.compareByGeneratedPositionsDeflated),this.__generatedMappings=w,l(v,h.compareByOriginalPositions),this.__originalMappings=v},e.prototype._findMapping=function(a,b,c,d,e,f){if(a[c]<=0)throw new TypeError("Line must be greater than or equal to 1, got "+a[c]);if(a[d]<0)throw new TypeError("Column must be greater than or equal to 0, got "+a[d]);return i.search(a,b,e,f)},e.prototype.computeColumnSpans=function(){for(var a=0;a<this._generatedMappings.length;++a){var b=this._generatedMappings[a];if(a+1<this._generatedMappings.length){var c=this._generatedMappings[a+1];if(b.generatedLine===c.generatedLine){b.lastGeneratedColumn=c.generatedColumn-1;continue}}b.lastGeneratedColumn=1/0}},e.prototype.originalPositionFor=function(a){var b={generatedLine:h.getArg(a,"line"),generatedColumn:h.getArg(a,"column")},c=this._findMapping(b,this._generatedMappings,"generatedLine","generatedColumn",h.compareByGeneratedPositionsDeflated,h.getArg(a,"bias",d.GREATEST_LOWER_BOUND));if(c>=0){var e=this._generatedMappings[c];if(e.generatedLine===b.generatedLine){var f=h.getArg(e,"source",null);null!==f&&(f=this._sources.at(f),null!=this.sourceRoot&&(f=h.join(this.sourceRoot,f)));var g=h.getArg(e,"name",null);return null!==g&&(g=this._names.at(g)),{source:f,line:h.getArg(e,"originalLine",null),column:h.getArg(e,"originalColumn",null),name:g}}}return{source:null,line:null,column:null,name:null}},e.prototype.hasContentsOfAllSources=function(){return!!this.sourcesContent&&(this.sourcesContent.length>=this._sources.size()&&!this.sourcesContent.some(function(a){return null==a}))},e.prototype.sourceContentFor=function(a,b){if(!this.sourcesContent)return null;if(null!=this.sourceRoot&&(a=h.relative(this.sourceRoot,a)),this._sources.has(a))return this.sourcesContent[this._sources.indexOf(a)];var c;if(null!=this.sourceRoot&&(c=h.urlParse(this.sourceRoot))){var d=a.replace(/^file:\/\//,"");if("file"==c.scheme&&this._sources.has(d))return this.sourcesContent[this._sources.indexOf(d)];if((!c.path||"/"==c.path)&&this._sources.has("/"+a))return this.sourcesContent[this._sources.indexOf("/"+a)]}if(b)return null;throw new Error('"'+a+'" is not in the SourceMap.')},e.prototype.generatedPositionFor=function(a){var b=h.getArg(a,"source");if(null!=this.sourceRoot&&(b=h.relative(this.sourceRoot,b)),!this._sources.has(b))return{line:null,column:null,lastColumn:null};b=this._sources.indexOf(b);var c={source:b,originalLine:h.getArg(a,"line"),originalColumn:h.getArg(a,"column")},e=this._findMapping(c,this._originalMappings,"originalLine","originalColumn",h.compareByOriginalPositions,h.getArg(a,"bias",d.GREATEST_LOWER_BOUND));if(e>=0){var f=this._originalMappings[e];if(f.source===c.source)return{line:h.getArg(f,"generatedLine",null),column:h.getArg(f,"generatedColumn",null),lastColumn:h.getArg(f,"lastGeneratedColumn",null)}}return{line:null,column:null,lastColumn:null}},c.BasicSourceMapConsumer=e,g.prototype=Object.create(d.prototype),g.prototype.constructor=d,g.prototype._version=3,Object.defineProperty(g.prototype,"sources",{get:function(){for(var a=[],b=0;b<this._sections.length;b++)for(var c=0;c<this._sections[b].consumer.sources.length;c++)a.push(this._sections[b].consumer.sources[c]);return a}}),g.prototype.originalPositionFor=function(a){var b={generatedLine:h.getArg(a,"line"),generatedColumn:h.getArg(a,"column")},c=i.search(b,this._sections,function(a,b){var c=a.generatedLine-b.generatedOffset.generatedLine;return c?c:a.generatedColumn-b.generatedOffset.generatedColumn}),d=this._sections[c];return d?d.consumer.originalPositionFor({line:b.generatedLine-(d.generatedOffset.generatedLine-1),column:b.generatedColumn-(d.generatedOffset.generatedLine===b.generatedLine?d.generatedOffset.generatedColumn-1:0),bias:a.bias}):{source:null,line:null,column:null,name:null}},g.prototype.hasContentsOfAllSources=function(){return this._sections.every(function(a){return a.consumer.hasContentsOfAllSources()})},g.prototype.sourceContentFor=function(a,b){for(var c=0;c<this._sections.length;c++){var d=this._sections[c],e=d.consumer.sourceContentFor(a,!0);if(e)return e}if(b)return null;throw new Error('"'+a+'" is not in the SourceMap.')},g.prototype.generatedPositionFor=function(a){for(var b=0;b<this._sections.length;b++){var c=this._sections[b];if(c.consumer.sources.indexOf(h.getArg(a,"source"))!==-1){var d=c.consumer.generatedPositionFor(a);if(d){var e={line:d.line+(c.generatedOffset.generatedLine-1),column:d.column+(c.generatedOffset.generatedLine===d.line?c.generatedOffset.generatedColumn-1:0)};return e}}}return{line:null,column:null}},g.prototype._parseMappings=function(a,b){this.__generatedMappings=[],this.__originalMappings=[];for(var c=0;c<this._sections.length;c++)for(var d=this._sections[c],e=d.consumer._generatedMappings,f=0;f<e.length;f++){var g=e[f],i=d.consumer._sources.at(g.source);null!==d.consumer.sourceRoot&&(i=h.join(d.consumer.sourceRoot,i)),this._sources.add(i),i=this._sources.indexOf(i);var j=d.consumer._names.at(g.name);this._names.add(j),j=this._names.indexOf(j);var k={source:i,generatedLine:g.generatedLine+(d.generatedOffset.generatedLine-1),generatedColumn:g.generatedColumn+(d.generatedOffset.generatedLine===g.generatedLine?d.generatedOffset.generatedColumn-1:0),originalLine:g.originalLine,originalColumn:g.originalColumn,name:j};this.__generatedMappings.push(k),"number"==typeof k.originalLine&&this.__originalMappings.push(k)}l(this.__generatedMappings,h.compareByGeneratedPositionsDeflated),l(this.__originalMappings,h.compareByOriginalPositions)},c.IndexedSourceMapConsumer=g},{"./array-set":140,"./base64-vlq":141,"./binary-search":143,"./quick-sort":145,"./util":149}],147:[function(a,b,c){function d(a){a||(a={}),this._file=f.getArg(a,"file",null),this._sourceRoot=f.getArg(a,"sourceRoot",null),this._skipValidation=f.getArg(a,"skipValidation",!1),this._sources=new g,this._names=new g,this._mappings=new h,this._sourcesContents=null}var e=a("./base64-vlq"),f=a("./util"),g=a("./array-set").ArraySet,h=a("./mapping-list").MappingList;d.prototype._version=3,d.fromSourceMap=function(a){var b=a.sourceRoot,c=new d({file:a.file,sourceRoot:b});return a.eachMapping(function(a){var d={generated:{line:a.generatedLine,column:a.generatedColumn}};null!=a.source&&(d.source=a.source,null!=b&&(d.source=f.relative(b,d.source)),d.original={line:a.originalLine,column:a.originalColumn},null!=a.name&&(d.name=a.name)),c.addMapping(d)}),a.sources.forEach(function(b){var d=a.sourceContentFor(b);null!=d&&c.setSourceContent(b,d)}),c},d.prototype.addMapping=function(a){var b=f.getArg(a,"generated"),c=f.getArg(a,"original",null),d=f.getArg(a,"source",null),e=f.getArg(a,"name",null);this._skipValidation||this._validateMapping(b,c,d,e),null!=d&&(d=String(d),this._sources.has(d)||this._sources.add(d)),null!=e&&(e=String(e),this._names.has(e)||this._names.add(e)),this._mappings.add({generatedLine:b.line,generatedColumn:b.column,originalLine:null!=c&&c.line,originalColumn:null!=c&&c.column,source:d,name:e})},d.prototype.setSourceContent=function(a,b){var c=a;null!=this._sourceRoot&&(c=f.relative(this._sourceRoot,c)),null!=b?(this._sourcesContents||(this._sourcesContents=Object.create(null)),this._sourcesContents[f.toSetString(c)]=b):this._sourcesContents&&(delete this._sourcesContents[f.toSetString(c)],0===Object.keys(this._sourcesContents).length&&(this._sourcesContents=null))},d.prototype.applySourceMap=function(a,b,c){var d=b;if(null==b){if(null==a.file)throw new Error('SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, or the source map\'s "file" property. Both were omitted.');d=a.file}var e=this._sourceRoot;null!=e&&(d=f.relative(e,d));var h=new g,i=new g;this._mappings.unsortedForEach(function(b){if(b.source===d&&null!=b.originalLine){var g=a.originalPositionFor({line:b.originalLine,column:b.originalColumn});null!=g.source&&(b.source=g.source,null!=c&&(b.source=f.join(c,b.source)),null!=e&&(b.source=f.relative(e,b.source)),b.originalLine=g.line,b.originalColumn=g.column,null!=g.name&&(b.name=g.name))}var j=b.source;null==j||h.has(j)||h.add(j);var k=b.name;null==k||i.has(k)||i.add(k)},this),this._sources=h,this._names=i,a.sources.forEach(function(b){var d=a.sourceContentFor(b);null!=d&&(null!=c&&(b=f.join(c,b)),null!=e&&(b=f.relative(e,b)),this.setSourceContent(b,d))},this)},d.prototype._validateMapping=function(a,b,c,d){if((!(a&&"line"in a&&"column"in a&&a.line>0&&a.column>=0)||b||c||d)&&!(a&&"line"in a&&"column"in a&&b&&"line"in b&&"column"in b&&a.line>0&&a.column>=0&&b.line>0&&b.column>=0&&c))throw new Error("Invalid mapping: "+JSON.stringify({generated:a,source:c,original:b,name:d}))},d.prototype._serializeMappings=function(){for(var a,b,c,d,g=0,h=1,i=0,j=0,k=0,l=0,m="",n=this._mappings.toArray(),o=0,p=n.length;o<p;o++){if(b=n[o],a="",b.generatedLine!==h)for(g=0;b.generatedLine!==h;)a+=";",h++;else if(o>0){if(!f.compareByGeneratedPositionsInflated(b,n[o-1]))continue;a+=","}a+=e.encode(b.generatedColumn-g),g=b.generatedColumn,null!=b.source&&(d=this._sources.indexOf(b.source),a+=e.encode(d-l),l=d,a+=e.encode(b.originalLine-1-j),j=b.originalLine-1,a+=e.encode(b.originalColumn-i),i=b.originalColumn,null!=b.name&&(c=this._names.indexOf(b.name),a+=e.encode(c-k),k=c)),m+=a}return m},d.prototype._generateSourcesContent=function(a,b){return a.map(function(a){if(!this._sourcesContents)return null;null!=b&&(a=f.relative(b,a));var c=f.toSetString(a);return Object.prototype.hasOwnProperty.call(this._sourcesContents,c)?this._sourcesContents[c]:null},this)},d.prototype.toJSON=function(){var a={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return null!=this._file&&(a.file=this._file),null!=this._sourceRoot&&(a.sourceRoot=this._sourceRoot),this._sourcesContents&&(a.sourcesContent=this._generateSourcesContent(a.sources,a.sourceRoot)),a},d.prototype.toString=function(){return JSON.stringify(this.toJSON())},c.SourceMapGenerator=d},{"./array-set":140,"./base64-vlq":141,"./mapping-list":144,"./util":149}],148:[function(a,b,c){function d(a,b,c,d,e){this.children=[],this.sourceContents={},this.line=null==a?null:a,this.column=null==b?null:b,this.source=null==c?null:c,this.name=null==e?null:e,this[i]=!0,null!=d&&this.add(d)}var e=a("./source-map-generator").SourceMapGenerator,f=a("./util"),g=/(\r?\n)/,h=10,i="$$$isSourceNode$$$";d.fromStringWithSourceMap=function(a,b,c){function e(a,b){if(null===a||void 0===a.source)h.add(b);else{var e=c?f.join(c,a.source):a.source;h.add(new d(a.originalLine,a.originalColumn,e,b,a.name))}}var h=new d,i=a.split(g),j=function(){var a=i.shift(),b=i.shift()||"";return a+b},k=1,l=0,m=null;return b.eachMapping(function(a){if(null!==m){if(!(k<a.generatedLine)){var b=i[0],c=b.substr(0,a.generatedColumn-l);return i[0]=b.substr(a.generatedColumn-l),l=a.generatedColumn,e(m,c),void(m=a)}e(m,j()),k++,l=0}for(;k<a.generatedLine;)h.add(j()),k++;if(l<a.generatedColumn){var b=i[0];h.add(b.substr(0,a.generatedColumn)),i[0]=b.substr(a.generatedColumn),l=a.generatedColumn}m=a},this),i.length>0&&(m&&e(m,j()),h.add(i.join(""))),b.sources.forEach(function(a){var d=b.sourceContentFor(a);null!=d&&(null!=c&&(a=f.join(c,a)),h.setSourceContent(a,d))}),h},d.prototype.add=function(a){if(Array.isArray(a))a.forEach(function(a){this.add(a)},this);else{if(!a[i]&&"string"!=typeof a)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+a);a&&this.children.push(a)}return this},d.prototype.prepend=function(a){if(Array.isArray(a))for(var b=a.length-1;b>=0;b--)this.prepend(a[b]);else{if(!a[i]&&"string"!=typeof a)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+a);this.children.unshift(a)}return this},d.prototype.walk=function(a){for(var b,c=0,d=this.children.length;c<d;c++)b=this.children[c],b[i]?b.walk(a):""!==b&&a(b,{source:this.source,line:this.line,column:this.column,name:this.name})},d.prototype.join=function(a){var b,c,d=this.children.length;if(d>0){for(b=[],c=0;c<d-1;c++)b.push(this.children[c]),b.push(a);b.push(this.children[c]),this.children=b}return this},d.prototype.replaceRight=function(a,b){var c=this.children[this.children.length-1];return c[i]?c.replaceRight(a,b):"string"==typeof c?this.children[this.children.length-1]=c.replace(a,b):this.children.push("".replace(a,b)),this},d.prototype.setSourceContent=function(a,b){this.sourceContents[f.toSetString(a)]=b},d.prototype.walkSourceContents=function(a){for(var b=0,c=this.children.length;b<c;b++)this.children[b][i]&&this.children[b].walkSourceContents(a);for(var d=Object.keys(this.sourceContents),b=0,c=d.length;b<c;b++)a(f.fromSetString(d[b]),this.sourceContents[d[b]])},d.prototype.toString=function(){var a="";return this.walk(function(b){a+=b}),a},d.prototype.toStringWithSourceMap=function(a){var b={code:"",line:1,column:0},c=new e(a),d=!1,f=null,g=null,i=null,j=null;return this.walk(function(a,e){b.code+=a,null!==e.source&&null!==e.line&&null!==e.column?(f===e.source&&g===e.line&&i===e.column&&j===e.name||c.addMapping({source:e.source,original:{line:e.line,column:e.column},generated:{line:b.line,column:b.column},name:e.name}),f=e.source,g=e.line,i=e.column,j=e.name,d=!0):d&&(c.addMapping({generated:{line:b.line,column:b.column}}),f=null,d=!1);for(var k=0,l=a.length;k<l;k++)a.charCodeAt(k)===h?(b.line++,b.column=0,k+1===l?(f=null,d=!1):d&&c.addMapping({source:e.source,original:{line:e.line,column:e.column},generated:{line:b.line,column:b.column},name:e.name})):b.column++}),this.walkSourceContents(function(a,b){c.setSourceContent(a,b)}),{code:b.code,map:c}},c.SourceNode=d},{"./source-map-generator":147,"./util":149}],149:[function(a,b,c){function d(a,b,c){if(b in a)return a[b];if(3===arguments.length)return c;throw new Error('"'+b+'" is a required argument.')}function e(a){var b=a.match(r);return b?{scheme:b[1],auth:b[2],host:b[3],port:b[4],path:b[5]}:null}function f(a){var b="";return a.scheme&&(b+=a.scheme+":"),b+="//",a.auth&&(b+=a.auth+"@"),a.host&&(b+=a.host),a.port&&(b+=":"+a.port),a.path&&(b+=a.path),b}function g(a){var b=a,d=e(a);if(d){if(!d.path)return a;b=d.path}for(var g,h=c.isAbsolute(b),i=b.split(/\/+/),j=0,k=i.length-1;k>=0;k--)g=i[k],"."===g?i.splice(k,1):".."===g?j++:j>0&&(""===g?(i.splice(k+1,j),j=0):(i.splice(k,2),j--));return b=i.join("/"),""===b&&(b=h?"/":"."),d?(d.path=b,f(d)):b}function h(a,b){""===a&&(a="."),""===b&&(b=".");var c=e(b),d=e(a);if(d&&(a=d.path||"/"),c&&!c.scheme)return d&&(c.scheme=d.scheme),f(c);if(c||b.match(s))return b;if(d&&!d.host&&!d.path)return d.host=b,f(d);var h="/"===b.charAt(0)?b:g(a.replace(/\/+$/,"")+"/"+b);return d?(d.path=h,f(d)):h}function i(a,b){""===a&&(a="."),a=a.replace(/\/$/,"");for(var c=0;0!==b.indexOf(a+"/");){var d=a.lastIndexOf("/");if(d<0)return b;if(a=a.slice(0,d),a.match(/^([^\/]+:\/)?\/*$/))return b;++c}return Array(c+1).join("../")+b.substr(a.length+1)}function j(a){return a}function k(a){return m(a)?"$"+a:a}function l(a){return m(a)?a.slice(1):a}function m(a){if(!a)return!1;var b=a.length;if(b<9)return!1;if(95!==a.charCodeAt(b-1)||95!==a.charCodeAt(b-2)||111!==a.charCodeAt(b-3)||116!==a.charCodeAt(b-4)||111!==a.charCodeAt(b-5)||114!==a.charCodeAt(b-6)||112!==a.charCodeAt(b-7)||95!==a.charCodeAt(b-8)||95!==a.charCodeAt(b-9))return!1;for(var c=b-10;c>=0;c--)if(36!==a.charCodeAt(c))return!1;return!0}function n(a,b,c){var d=a.source-b.source;return 0!==d?d:(d=a.originalLine-b.originalLine,0!==d?d:(d=a.originalColumn-b.originalColumn,0!==d||c?d:(d=a.generatedColumn-b.generatedColumn,0!==d?d:(d=a.generatedLine-b.generatedLine,0!==d?d:a.name-b.name))))}function o(a,b,c){var d=a.generatedLine-b.generatedLine;return 0!==d?d:(d=a.generatedColumn-b.generatedColumn,0!==d||c?d:(d=a.source-b.source,0!==d?d:(d=a.originalLine-b.originalLine,0!==d?d:(d=a.originalColumn-b.originalColumn,0!==d?d:a.name-b.name))))}function p(a,b){return a===b?0:a>b?1:-1}function q(a,b){var c=a.generatedLine-b.generatedLine;return 0!==c?c:(c=a.generatedColumn-b.generatedColumn,0!==c?c:(c=p(a.source,b.source),0!==c?c:(c=a.originalLine-b.originalLine,0!==c?c:(c=a.originalColumn-b.originalColumn,0!==c?c:p(a.name,b.name)))))}c.getArg=d;var r=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.]*)(?::(\d+))?(\S*)$/,s=/^data:.+\,.+$/;c.urlParse=e,c.urlGenerate=f,c.normalize=g,c.join=h,c.isAbsolute=function(a){return"/"===a.charAt(0)||!!a.match(r)},c.relative=i;var t=function(){var a=Object.create(null);return!("__proto__"in a)}();c.toSetString=t?j:k,c.fromSetString=t?j:l,c.compareByOriginalPositions=n,c.compareByGeneratedPositionsDeflated=o,c.compareByGeneratedPositionsInflated=q},{}],150:[function(a,b,c){c.SourceMapGenerator=a("./lib/source-map-generator").SourceMapGenerator,c.SourceMapConsumer=a("./lib/source-map-consumer").SourceMapConsumer,c.SourceNode=a("./lib/source-node").SourceNode},{"./lib/source-map-consumer":146,"./lib/source-map-generator":147,"./lib/source-node":148}],151:[function(a,b,c){(function(b){var d=a("./lib/request"),e=a("xtend"),f=a("builtin-status-codes"),g=a("url"),h=c;h.request=function(a,c){a="string"==typeof a?g.parse(a):e(a);var f=b.location.protocol.search(/^https?:$/)===-1?"http:":"",h=a.protocol||f,i=a.hostname||a.host,j=a.port,k=a.path||"/";i&&i.indexOf(":")!==-1&&(i="["+i+"]"),a.url=(i?h+"//"+i:"")+(j?":"+j:"")+k,a.method=(a.method||"GET").toUpperCase(),a.headers=a.headers||{};var l=new d(a);return c&&l.on("response",c),l},h.get=function(a,b){var c=h.request(a,b);return c.end(),c},h.Agent=function(){},h.Agent.defaultMaxSockets=4,h.STATUS_CODES=f,h.METHODS=["CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REPORT","SEARCH","SUBSCRIBE","TRACE","UNLOCK","UNSUBSCRIBE"]}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./lib/request":153,"builtin-status-codes":6,url:158,xtend:165}],152:[function(a,b,c){(function(a){function b(){if(void 0!==f)return f;if(a.XMLHttpRequest){f=new a.XMLHttpRequest;try{f.open("GET",a.XDomainRequest?"/":"https://example.com")}catch(a){f=null}}else f=null;return f}function d(a){var c=b();if(!c)return!1;try{return c.responseType=a,c.responseType===a}catch(a){}return!1}function e(a){return"function"==typeof a}c.fetch=e(a.fetch)&&e(a.ReadableStream),c.blobConstructor=!1;try{new Blob([new ArrayBuffer(1)]),c.blobConstructor=!0}catch(a){}var f,g="undefined"!=typeof a.ArrayBuffer,h=g&&e(a.ArrayBuffer.prototype.slice);c.arraybuffer=c.fetch||g&&d("arraybuffer"),c.msstream=!c.fetch&&h&&d("ms-stream"),c.mozchunkedarraybuffer=!c.fetch&&g&&d("moz-chunked-arraybuffer"),c.overrideMimeType=c.fetch||!!b()&&e(b().overrideMimeType),c.vbArray=e(a.VBArray),f=null}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],153:[function(a,b,c){(function(c,d,e){function f(a,b){return h.fetch&&b?"fetch":h.mozchunkedarraybuffer?"moz-chunked-arraybuffer":h.msstream?"ms-stream":h.arraybuffer&&a?"arraybuffer":h.vbArray&&a?"text:vbarray":"text"}function g(a){try{var b=a.status;return null!==b&&0!==b}catch(a){return!1}}var h=a("./capability"),i=a("inherits"),j=a("./response"),k=a("readable-stream"),l=a("to-arraybuffer"),m=j.IncomingMessage,n=j.readyStates,o=b.exports=function(a){var b=this;k.Writable.call(b),b._opts=a,b._body=[],b._headers={},a.auth&&b.setHeader("Authorization","Basic "+new e(a.auth).toString("base64")),Object.keys(a.headers).forEach(function(c){b.setHeader(c,a.headers[c])});var c,d=!0;if("disable-fetch"===a.mode||"timeout"in a)d=!1,c=!0;else if("prefer-streaming"===a.mode)c=!1;else if("allow-wrong-content-type"===a.mode)c=!h.overrideMimeType;else{if(a.mode&&"default"!==a.mode&&"prefer-fast"!==a.mode)throw new Error("Invalid value for opts.mode");c=!0}b._mode=f(c,d),b.on("finish",function(){b._onFinish()})};i(o,k.Writable),o.prototype.setHeader=function(a,b){var c=this,d=a.toLowerCase();p.indexOf(d)===-1&&(c._headers[d]={name:a,value:b})},o.prototype.getHeader=function(a){var b=this;return b._headers[a.toLowerCase()].value},o.prototype.removeHeader=function(a){var b=this;delete b._headers[a.toLowerCase()]},o.prototype._onFinish=function(){var a=this;if(!a._destroyed){var b=a._opts,f=a._headers,g=null;if("POST"!==b.method&&"PUT"!==b.method&&"PATCH"!==b.method&&"MERGE"!==b.method||(g=h.blobConstructor?new d.Blob(a._body.map(function(a){return l(a)}),{type:(f["content-type"]||{}).value||""}):e.concat(a._body).toString()),"fetch"===a._mode){var i=Object.keys(f).map(function(a){return[f[a].name,f[a].value]});d.fetch(a._opts.url,{method:a._opts.method,headers:i,body:g||void 0,mode:"cors",credentials:b.withCredentials?"include":"same-origin"}).then(function(b){a._fetchResponse=b,a._connect()},function(b){a.emit("error",b)})}else{var j=a._xhr=new d.XMLHttpRequest;try{j.open(a._opts.method,a._opts.url,!0)}catch(b){return void c.nextTick(function(){a.emit("error",b)})}"responseType"in j&&(j.responseType=a._mode.split(":")[0]),"withCredentials"in j&&(j.withCredentials=!!b.withCredentials),"text"===a._mode&&"overrideMimeType"in j&&j.overrideMimeType("text/plain; charset=x-user-defined"),"timeout"in b&&(j.timeout=b.timeout,j.ontimeout=function(){a.emit("timeout")}),Object.keys(f).forEach(function(a){j.setRequestHeader(f[a].name,f[a].value)}),a._response=null,j.onreadystatechange=function(){switch(j.readyState){case n.LOADING:case n.DONE:a._onXHRProgress()}},"moz-chunked-arraybuffer"===a._mode&&(j.onprogress=function(){a._onXHRProgress()}),j.onerror=function(){a._destroyed||a.emit("error",new Error("XHR error"))};try{j.send(g)}catch(b){return void c.nextTick(function(){a.emit("error",b)})}}}},o.prototype._onXHRProgress=function(){var a=this;g(a._xhr)&&!a._destroyed&&(a._response||a._connect(),a._response._onXHRProgress())},o.prototype._connect=function(){var a=this;a._destroyed||(a._response=new m(a._xhr,a._fetchResponse,a._mode),a._response.on("error",function(b){a.emit("error",b)}),a.emit("response",a._response))},o.prototype._write=function(a,b,c){var d=this;d._body.push(a),c()},o.prototype.abort=o.prototype.destroy=function(){var a=this;a._destroyed=!0,a._response&&(a._response._destroyed=!0),a._xhr&&a._xhr.abort()},o.prototype.end=function(a,b,c){var d=this;"function"==typeof a&&(c=a,a=void 0),k.Writable.prototype.end.call(d,a,b,c)},o.prototype.flushHeaders=function(){},o.prototype.setTimeout=function(){},o.prototype.setNoDelay=function(){},o.prototype.setSocketKeepAlive=function(){};var p=["accept-charset","accept-encoding","access-control-request-headers","access-control-request-method","connection","content-length","cookie","cookie2","date","dnt","expect","host","keep-alive","origin","referer","te","trailer","transfer-encoding","upgrade","user-agent","via"]}).call(this,a("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},a("buffer").Buffer)},{"./capability":152,"./response":154,_process:111,buffer:5,inherits:104,"readable-stream":122,"to-arraybuffer":156}],154:[function(a,b,c){(function(b,d,e){var f=a("./capability"),g=a("inherits"),h=a("readable-stream"),i=c.readyStates={UNSENT:0,OPENED:1,HEADERS_RECEIVED:2,LOADING:3,DONE:4},j=c.IncomingMessage=function(a,c,d){function g(){j.read().then(function(a){if(!i._destroyed){if(a.done)return void i.push(null);i.push(new e(a.value)),g()}}).catch(function(a){i.emit("error",a)})}var i=this;if(h.Readable.call(i),i._mode=d,i.headers={},i.rawHeaders=[],i.trailers={},i.rawTrailers=[],i.on("end",function(){b.nextTick(function(){i.emit("close")})}),"fetch"===d){i._fetchResponse=c,i.url=c.url,i.statusCode=c.status,i.statusMessage=c.statusText,c.headers.forEach(function(a,b){i.headers[b.toLowerCase()]=a,i.rawHeaders.push(b,a)});var j=c.body.getReader();g()}else{i._xhr=a,i._pos=0,i.url=a.responseURL,i.statusCode=a.status,i.statusMessage=a.statusText;var k=a.getAllResponseHeaders().split(/\r?\n/);if(k.forEach(function(a){var b=a.match(/^([^:]+):\s*(.*)/);if(b){var c=b[1].toLowerCase();"set-cookie"===c?(void 0===i.headers[c]&&(i.headers[c]=[]),i.headers[c].push(b[2])):void 0!==i.headers[c]?i.headers[c]+=", "+b[2]:i.headers[c]=b[2],i.rawHeaders.push(b[1],b[2])}}),i._charset="x-user-defined",!f.overrideMimeType){var l=i.rawHeaders["mime-type"];if(l){var m=l.match(/;\s*charset=([^;])(;|$)/);m&&(i._charset=m[1].toLowerCase())}i._charset||(i._charset="utf-8")}}};g(j,h.Readable),j.prototype._read=function(){},j.prototype._onXHRProgress=function(){var a=this,b=a._xhr,c=null;switch(a._mode){case"text:vbarray":if(b.readyState!==i.DONE)break;try{c=new d.VBArray(b.responseBody).toArray()}catch(a){}if(null!==c){a.push(new e(c));break}case"text":try{c=b.responseText}catch(b){a._mode="text:vbarray";break}if(c.length>a._pos){var f=c.substr(a._pos);if("x-user-defined"===a._charset){for(var g=new e(f.length),h=0;h<f.length;h++)g[h]=255&f.charCodeAt(h);a.push(g)}else a.push(f,a._charset);a._pos=c.length}break;case"arraybuffer":if(b.readyState!==i.DONE||!b.response)break;c=b.response,a.push(new e(new Uint8Array(c)));break;case"moz-chunked-arraybuffer":if(c=b.response,b.readyState!==i.LOADING||!c)break;a.push(new e(new Uint8Array(c)));break;case"ms-stream":if(c=b.response,b.readyState!==i.LOADING)break;var j=new d.MSStreamReader;j.onprogress=function(){j.result.byteLength>a._pos&&(a.push(new e(new Uint8Array(j.result.slice(a._pos)))),a._pos=j.result.byteLength)},j.onload=function(){a.push(null)},j.readAsArrayBuffer(c)}a._xhr.readyState===i.DONE&&"ms-stream"!==a._mode&&a.push(null)}}).call(this,a("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},a("buffer").Buffer)},{"./capability":152,_process:111,buffer:5,inherits:104,"readable-stream":122}],155:[function(a,b,c){function d(a){if(a&&!i(a))throw new Error("Unknown encoding: "+a)}function e(a){return a.toString(this.encoding)}function f(a){this.charReceived=a.length%2,this.charLength=this.charReceived?2:0}function g(a){this.charReceived=a.length%3,this.charLength=this.charReceived?3:0}var h=a("buffer").Buffer,i=h.isEncoding||function(a){switch(a&&a.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}},j=c.StringDecoder=function(a){switch(this.encoding=(a||"utf8").toLowerCase().replace(/[-_]/,""),d(a),this.encoding){case"utf8":this.surrogateSize=3;break;case"ucs2":case"utf16le":this.surrogateSize=2,this.detectIncompleteChar=f;break;case"base64":this.surrogateSize=3,this.detectIncompleteChar=g;break;default:return void(this.write=e)}this.charBuffer=new h(6),this.charReceived=0,this.charLength=0};j.prototype.write=function(a){for(var b="";this.charLength;){var c=a.length>=this.charLength-this.charReceived?this.charLength-this.charReceived:a.length;if(a.copy(this.charBuffer,this.charReceived,0,c),this.charReceived+=c,this.charReceived<this.charLength)return"";a=a.slice(c,a.length),b=this.charBuffer.slice(0,this.charLength).toString(this.encoding);var d=b.charCodeAt(b.length-1);if(!(d>=55296&&d<=56319)){if(this.charReceived=this.charLength=0,0===a.length)return b;break}this.charLength+=this.surrogateSize,b=""}this.detectIncompleteChar(a);var e=a.length;this.charLength&&(a.copy(this.charBuffer,0,a.length-this.charReceived,e),e-=this.charReceived),b+=a.toString(this.encoding,0,e);var e=b.length-1,d=b.charCodeAt(e);if(d>=55296&&d<=56319){var f=this.surrogateSize;return this.charLength+=f,this.charReceived+=f,this.charBuffer.copy(this.charBuffer,f,0,f),a.copy(this.charBuffer,0,0,f),b.substring(0,e)}return b},j.prototype.detectIncompleteChar=function(a){for(var b=a.length>=3?3:a.length;b>0;b--){var c=a[a.length-b];if(1==b&&c>>5==6){this.charLength=2;break}if(b<=2&&c>>4==14){this.charLength=3;break}if(b<=3&&c>>3==30){this.charLength=4;break}}this.charReceived=b},j.prototype.end=function(a){var b="";if(a&&a.length&&(b=this.write(a)),this.charReceived){var c=this.charReceived,d=this.charBuffer,e=this.encoding;b+=d.slice(0,c).toString(e)}return b}},{buffer:5}],156:[function(a,b,c){var d=a("buffer").Buffer;b.exports=function(a){if(a instanceof Uint8Array){if(0===a.byteOffset&&a.byteLength===a.buffer.byteLength)return a.buffer;if("function"==typeof a.buffer.slice)return a.buffer.slice(a.byteOffset,a.byteOffset+a.byteLength)}if(d.isBuffer(a)){for(var b=new Uint8Array(a.length),c=a.length,e=0;e<c;e++)b[e]=a[e];return b.buffer}throw new Error("Argument must be a Buffer")}},{buffer:5}],157:[function(a,b,c){(function(b){function d(a){for(var b=Object.create(null),c=0;c<a.length;++c)b[a[c]]=!0;return b}function e(a,b){return Array.prototype.slice.call(a,b||0)}function f(a){return a.split("")}function g(a,b){return b.indexOf(a)>=0}function h(a,b){for(var c=0,d=b.length;c<d;++c)if(a(b[c]))return b[c]}function i(a,b){if(b<=0)return"";if(1==b)return a;var c=i(a,b>>1);return c+=c,1&b&&(c+=a),c}function j(a){Object.defineProperty(a.prototype,"stack",{get:function(){var a=new Error(this.message);a.name=this.name;try{throw a}catch(a){return a.stack}}})}function k(a,b){this.message=a,this.defs=b}function l(a,b,c){a===!0&&(a={});var d=a||{};if(c)for(var e in d)z(d,e)&&!z(b,e)&&k.croak("`"+e+"` is not a supported option",b);for(var e in b)z(b,e)&&(d[e]=a&&z(a,e)?a[e]:b[e]);return d}function m(a,b){var c=0;for(var d in b)z(b,d)&&(a[d]=b[d],c++);return c}function n(){}function o(){return!1}function p(){return!0}function q(a,b){a.indexOf(b)<0&&a.push(b)}function r(a,b){return a.replace(/\{(.+?)\}/g,function(a,c){return b[c]})}function s(a,b){for(var c=a.length;--c>=0;)a[c]===b&&a.splice(c,1)}function t(a,b){function c(a,c){for(var d=[],e=0,f=0,g=0;e<a.length&&f<c.length;)b(a[e],c[f])<=0?d[g++]=a[e++]:d[g++]=c[f++];return e<a.length&&d.push.apply(d,a.slice(e)),f<c.length&&d.push.apply(d,c.slice(f)),d}function d(a){if(a.length<=1)return a;var b=Math.floor(a.length/2),e=a.slice(0,b),f=a.slice(b);return e=d(e),f=d(f),c(e,f)}return a.length<2?a.slice():d(a)}function u(a,b){return a.filter(function(a){return b.indexOf(a)<0})}function v(a,b){return a.filter(function(a){return b.indexOf(a)>=0})}function w(a){function b(a){return JSON.stringify(a).replace(/[\u2028\u2029]/g,function(a){switch(a){case"\u2028":return"\\u2028";case"\u2029":return"\\u2029"}return a})}function c(a){if(1==a.length)return d+="return str === "+b(a[0])+";";d+="switch(str){";for(var c=0;c<a.length;++c)d+="case "+b(a[c])+":";d+="return true}return false;"}a instanceof Array||(a=a.split(" "));var d="",e=[];a:for(var f=0;f<a.length;++f){for(var g=0;g<e.length;++g)if(e[g][0].length==a[f].length){e[g].push(a[f]);continue a}e.push([a[f]])}if(e.length>3){e.sort(function(a,b){return b.length-a.length}),d+="switch(str.length){";for(var f=0;f<e.length;++f){var h=e[f];d+="case "+h[0].length+":",c(h)}d+="}"}else c(a);return new Function("str",d)}function x(a,b){for(var c=a.length;--c>=0;)if(!b(a[c]))return!1;return!0}function y(){this._values=Object.create(null),this._size=0}function z(a,b){return Object.prototype.hasOwnProperty.call(a,b)}function A(a){for(var b,c=a.parent(-1),d=0;b=a.parent(d);d++){if(b instanceof ha&&b.body===c)return!0;if(!(b instanceof Ya&&b.car===c||b instanceof Wa&&b.expression===c&&!(b instanceof Xa)||b instanceof $a&&b.expression===c||b instanceof _a&&b.expression===c||b instanceof eb&&b.condition===c||b instanceof db&&b.left===c||b instanceof cb&&b.expression===c))return!1;c=b}}function B(a,b,d,e){arguments.length<4&&(e=ga),b=b?b.split(/\s+/):[];var f=b;e&&e.PROPS&&(b=b.concat(e.PROPS));for(var g="return function AST_"+a+"(props){ if (props) { ",h=b.length;--h>=0;)g+="this."+b[h]+" = props."+b[h]+";";var i=e&&new e;(i&&i.initialize||d&&d.initialize)&&(g+="this.initialize();"),g+="}}";var j=new Function(g)();if(i&&(j.prototype=i,j.BASE=e),e&&e.SUBCLASSES.push(j),
-j.prototype.CTOR=j,j.PROPS=b||null,j.SELF_PROPS=f,j.SUBCLASSES=[],a&&(j.prototype.TYPE=j.TYPE=a),d)for(h in d)z(d,h)&&(/^\$/.test(h)?j[h.substr(1)]=d[h]:j.prototype[h]=d[h]);return j.DEFMETHOD=function(a,b){this.prototype[a]=b},"undefined"!=typeof c&&(c["AST_"+a]=j),j}function C(a,b){var c=a.body;if(c instanceof ha)c._walk(b);else for(var d=0,e=c.length;d<e;d++)c[d]._walk(b)}function D(a){this.visit=a,this.stack=[],this.directives=Object.create(null)}function E(a){return a>=97&&a<=122||a>=65&&a<=90||a>=170&&Zb.letter.test(String.fromCharCode(a))}function F(a){return a>=48&&a<=57}function G(a){return F(a)||E(a)}function H(a){return Zb.digit.test(String.fromCharCode(a))}function I(a){return Zb.non_spacing_mark.test(a)||Zb.space_combining_mark.test(a)}function J(a){return Zb.connector_punctuation.test(a)}function K(a){return!Ob(a)&&/^[a-z_$][a-z0-9_$]*$/i.test(a)}function L(a){return 36==a||95==a||E(a)}function M(a){var b=a.charCodeAt(0);return L(b)||F(b)||8204==b||8205==b||I(a)||J(a)||H(b)}function N(a){return/^[a-z_$][a-z0-9_$]*$/i.test(a)}function O(a){if(Rb.test(a))return parseInt(a.substr(2),16);if(Sb.test(a))return parseInt(a.substr(1),8);var b=parseFloat(a);return b==a?b:void 0}function P(a,b,c,d,e){this.message=a,this.filename=b,this.line=c,this.col=d,this.pos=e}function Q(a,b,c,d,e){throw new P(a,b,c,d,e)}function R(a,b,c){return a.type==b&&(null==c||a.value==c)}function S(a,b,c,d){function e(){return B.text.charAt(B.pos)}function f(a,b){var c=B.text.charAt(B.pos++);if(a&&!c)throw $b;return Vb(c)?(B.newline_before=B.newline_before||!b,++B.line,B.col=0,b||"\r"!=c||"\n"!=e()||(++B.pos,c="\n")):++B.col,c}function g(a){for(;a-- >0;)f()}function h(a){return B.text.substr(B.pos,a.length)==a}function i(){for(var a=B.text,b=B.pos,c=B.text.length;b<c;++b){var d=a[b];if(Vb(d))return b}return-1}function j(a,b){var c=B.text.indexOf(a,B.pos);if(b&&c==-1)throw $b;return c}function k(){B.tokline=B.line,B.tokcol=B.col,B.tokpos=B.pos}function l(c,d,e){B.regex_allowed="operator"==c&&!ac(d)||"keyword"==c&&Pb(d)||"punc"==c&&Wb(d),C="punc"==c&&"."==d;var f={type:c,value:d,line:B.tokline,col:B.tokcol,pos:B.tokpos,endline:B.line,endcol:B.col,endpos:B.pos,nlb:B.newline_before,file:b};if(/^(?:num|string|regexp)$/i.test(c)&&(f.raw=a.substring(f.pos,f.endpos)),!e){f.comments_before=B.comments_before,B.comments_before=[];for(var g=0,h=f.comments_before.length;g<h;g++)f.nlb=f.nlb||f.comments_before[g].nlb}return B.newline_before=!1,new fa(f)}function m(){for(;Ub(e());)f()}function n(a){for(var b,c="",d=0;(b=e())&&a(b,d++);)c+=f();return c}function o(a){Q(a,b,B.tokline,B.tokcol,B.tokpos)}function p(a){var b=!1,c=!1,d=!1,e="."==a,f=n(function(f,g){var h=f.charCodeAt(0);switch(h){case 120:case 88:return!d&&(d=!0);case 101:case 69:return!!d||!b&&(b=c=!0);case 45:return c||0==g&&!a;case 43:return c;case c=!1,46:return!(e||d||b)&&(e=!0)}return G(h)});a&&(f=a+f),Sb.test(f)&&A.has_directive("use strict")&&o("Legacy octal literals are not allowed in strict mode");var g=O(f);return isNaN(g)?void o("Invalid syntax: "+f):l("num",g)}function q(a){var b=f(!0,a);switch(b.charCodeAt(0)){case 110:return"\n";case 114:return"\r";case 116:return"\t";case 98:return"\b";case 118:return"\v";case 102:return"\f";case 120:return String.fromCharCode(s(2));case 117:return String.fromCharCode(s(4));case 10:return"";case 13:if("\n"==e())return f(!0,a),""}return b>="0"&&b<="7"?r(b):b}function r(a){var b=e();return b>="0"&&b<="7"&&(a+=f(!0),a[0]<="3"&&(b=e())>="0"&&b<="7"&&(a+=f(!0))),"0"===a?"\0":(a.length>0&&A.has_directive("use strict")&&o("Legacy octal escape sequences are not allowed in strict mode"),String.fromCharCode(parseInt(a,8)))}function s(a){for(var b=0;a>0;--a){var c=parseInt(f(!0),16);isNaN(c)&&o("Invalid hex-character pattern in string"),b=b<<4|c}return b}function t(a){var b,c=B.regex_allowed,d=i();return d==-1?(b=B.text.substr(B.pos),B.pos=B.text.length):(b=B.text.substring(B.pos,d),B.pos=d),B.col=B.tokcol+(B.pos-B.tokpos),B.comments_before.push(l(a,b,!0)),B.regex_allowed=c,A}function u(){for(var a,b,c=!1,d="",g=!1;null!=(a=e());)if(c)"u"!=a&&o("Expecting UnicodeEscapeSequence -- uXXXX"),a=q(),M(a)||o("Unicode char: "+a.charCodeAt(0)+" is not valid in identifier"),d+=a,c=!1;else if("\\"==a)g=c=!0,f();else{if(!M(a))break;d+=f()}return Mb(d)&&g&&(b=d.charCodeAt(0).toString(16).toUpperCase(),d="\\u"+"0000".substr(b.length)+b+d.slice(1)),d}function v(a){function b(a){if(!e())return a;var c=a+e();return Tb(c)?(f(),b(c)):a}return l("operator",b(a||f()))}function w(){switch(f(),e()){case"/":return f(),t("comment1");case"*":return f(),E()}return B.regex_allowed?H(""):v("/")}function x(){return f(),F(e().charCodeAt(0))?p("."):l("punc",".")}function y(){var a=u();return C?l("name",a):Nb(a)?l("atom",a):Mb(a)?Tb(a)?l("operator",a):l("keyword",a):l("name",a)}function z(a,b){return function(c){try{return b(c)}catch(b){if(b!==$b)throw b;o(a)}}}function A(a){if(null!=a)return H(a);for(;;){if(m(),k(),c){if(h("<!--")){g(4),t("comment3");continue}if(h("-->")&&B.newline_before){g(3),t("comment4");continue}}var b=e();if(!b)return l("eof");var i=b.charCodeAt(0);switch(i){case 34:case 39:return D(b);case 46:return x();case 47:var j=w();if(j===A)continue;return j}if(F(i))return p();if(Xb(b))return l("punc",f());if(Qb(b))return v();if(92==i||L(i))return y();if(!d||0!=B.pos||!h("#!"))break;g(2),t("comment5")}o("Unexpected character '"+b+"'")}var B={text:a,filename:b,pos:0,tokpos:0,line:1,tokline:0,col:0,tokcol:0,newline_before:!1,regex_allowed:!1,comments_before:[],directives:{},directive_stack:[]},C=!1,D=z("Unterminated string constant",function(a){for(var b=f(),c="";;){var d=f(!0,!0);if("\\"==d)d=q(!0);else if(Vb(d))o("Unterminated string constant");else if(d==b)break;c+=d}var e=l("string",c);return e.quote=a,e}),E=z("Unterminated multiline comment",function(){var a=B.regex_allowed,b=j("*/",!0),c=B.text.substring(B.pos,b).replace(/\r\n|\r|\u2028|\u2029/g,"\n");return g(c.length+2),B.comments_before.push(l("comment2",c,!0)),B.regex_allowed=a,A}),H=z("Unterminated regular expression",function(a){for(var b,c=!1,d=!1;b=f(!0);)if(Vb(b))o("Unexpected line terminator");else if(c)a+="\\"+b,c=!1;else if("["==b)d=!0,a+=b;else if("]"==b&&d)d=!1,a+=b;else{if("/"==b&&!d)break;"\\"==b?c=!0:a+=b}var e=u();try{return l("regexp",new RegExp(a,e))}catch(a){o(a.message)}});return A.context=function(a){return a&&(B=a),B},A.add_directive=function(a){B.directive_stack[B.directive_stack.length-1].push(a),void 0===B.directives[a]?B.directives[a]=1:B.directives[a]++},A.push_directives_stack=function(){B.directive_stack.push([])},A.pop_directives_stack=function(){for(var a=B.directive_stack[B.directive_stack.length-1],b=0;b<a.length;b++)B.directives[a[b]]--;B.directive_stack.pop()},A.has_directive=function(a){return void 0!==B.directives[a]&&B.directives[a]>0},A}function T(a,b){function c(a,b){return R(O.token,a,b)}function d(){return O.peeked||(O.peeked=O.input())}function e(){return O.prev=O.token,O.peeked?(O.token=O.peeked,O.peeked=null):O.token=O.input(),O.in_directives=O.in_directives&&("string"==O.token.type||c("punc",";")),O.token}function f(){return O.prev}function g(a,b,c,d){var e=O.input.context();Q(a,e.filename,null!=b?b:e.tokline,null!=c?c:e.tokcol,null!=d?d:e.tokpos)}function i(a,b){g(b,a.line,a.col)}function j(a){null==a&&(a=O.token),i(a,"Unexpected token: "+a.type+" ("+a.value+")")}function k(a,b){return c(a,b)?e():void i(O.token,"Unexpected token "+O.token.type+" «"+O.token.value+"», expected "+a+" «"+b+"»")}function m(a){return k("punc",a)}function n(){return!b.strict&&(O.token.nlb||c("eof")||c("punc","}"))}function o(a){c("punc",";")?e():a||n()||j()}function p(){m("(");var a=ea(!0);return m(")"),a}function q(a){return function(){var b=O.token,c=a(),d=f();return c.start=b,c.end=d,c}}function r(){(c("operator","/")||c("operator","/="))&&(O.peeked=null,O.token=O.input(O.token.value.substr(1)))}function s(){var a=I(vb);h(function(b){return b.name==a.name},O.labels)&&g("Label "+a.name+" defined twice"),m(":"),O.labels.push(a);var b=P();return O.labels.pop(),b instanceof qa||a.references.forEach(function(b){b instanceof Ja&&(b=b.label.start,g("Continue label `"+a.name+"` refers to non-IterationStatement.",b.line,b.col,b.pos))}),new pa({body:b,label:a})}function t(a){return new ka({body:(a=ea(!0),o(),a)})}function u(a){var b,c=null;n()||(c=I(xb,!0)),null!=c?(b=h(function(a){return a.name==c.name},O.labels),b||g("Undefined label "+c.name),c.thedef=b):0==O.in_loop&&g(a.TYPE+" not inside a loop or switch"),o();var d=new a({label:c});return b&&b.references.push(d),d}function v(){m("(");var a=null;return!c("punc",";")&&(a=c("keyword","var")?(e(),U(!0)):ea(!0,!0),c("operator","in"))?(a instanceof Ta&&a.definitions.length>1&&g("Only one variable declaration allowed in for..in loop"),e(),x(a)):w(a)}function w(a){m(";");var b=c("punc",";")?null:ea(!0);m(";");var d=c("punc",")")?null:ea(!0);return m(")"),new ua({init:a,condition:b,step:d,body:M(P)})}function x(a){var b=a instanceof Ta?a.definitions[0].name:null,c=ea(!0);return m(")"),new va({init:a,name:b,object:c,body:M(P)})}function y(){var a=p(),b=P(),d=null;return c("keyword","else")&&(e(),d=P()),new Ka({condition:a,body:b,alternative:d})}function z(){m("{");for(var a=[];!c("punc","}");)c("eof")&&j(),a.push(P());return e(),a}function A(){m("{");for(var a,b=[],d=null,g=null;!c("punc","}");)c("eof")&&j(),c("keyword","case")?(g&&(g.end=f()),d=[],g=new Oa({start:(a=O.token,e(),a),expression:ea(!0),body:d}),b.push(g),m(":")):c("keyword","default")?(g&&(g.end=f()),d=[],g=new Na({start:(a=O.token,e(),m(":"),a),body:d}),b.push(g)):(d||j(),d.push(P()));return g&&(g.end=f()),e(),b}function B(){var a=z(),b=null,d=null;if(c("keyword","catch")){var h=O.token;e(),m("(");var i=I(ub);m(")"),b=new Qa({start:h,argname:i,body:z(),end:f()})}if(c("keyword","finally")){var h=O.token;e(),d=new Ra({start:h,body:z(),end:f()})}return b||d||g("Missing catch/finally blocks"),new Pa({body:a,bcatch:b,bfinally:d})}function C(a,b){for(var d=[];d.push(new Va({start:O.token,name:I(b?qb:pb),value:c("operator","=")?(e(),ea(!1,a)):null,end:f()})),c("punc",",");)e();return d}function D(){var a,b=O.token;switch(b.type){case"name":case"keyword":a=H(wb);break;case"num":a=new Bb({start:b,end:b,value:b.value});break;case"string":a=new Ab({start:b,end:b,value:b.value,quote:b.quote});break;case"regexp":a=new Cb({start:b,end:b,value:b.value});break;case"atom":switch(b.value){case"false":a=new Kb({start:b,end:b});break;case"true":a=new Lb({start:b,end:b});break;case"null":a=new Eb({start:b,end:b})}break;case"operator":N(b.value)||g("Invalid getter/setter name: "+b.value,b.line,b.col,b.pos),a=H(wb)}return e(),a}function E(a,b,d){for(var f=!0,g=[];!c("punc",a)&&(f?f=!1:m(","),!b||!c("punc",a));)c("punc",",")&&d?g.push(new Hb({start:O.token,end:O.token})):g.push(ea(!1));return e(),g}function F(){var a=O.token;switch(e(),a.type){case"num":case"string":case"name":case"operator":case"keyword":case"atom":return a.value;default:j()}}function G(){var a=O.token;switch(e(),a.type){case"name":case"operator":case"keyword":case"atom":return a.value;default:j()}}function H(a){var b=O.token.value;return new("this"==b?yb:a)({name:String(b),start:O.token,end:O.token})}function I(a,b){if(!c("name"))return b||g("Name expected"),null;var d=H(a);return e(),d}function J(a,b,c){return"++"!=b&&"--"!=b||L(c)||g("Invalid use of "+b+" operator"),new a({operator:b,expression:c})}function K(a){return ba(aa(!0),0,a)}function L(a){return!b.strict||!(a instanceof yb)&&(a instanceof Za||a instanceof mb)}function M(a){++O.in_loop;var b=a();return--O.in_loop,b}b=l(b,{strict:!1,filename:null,toplevel:null,expression:!1,html5_comments:!0,bare_returns:!1,shebang:!0});var O={input:"string"==typeof a?S(a,b.filename,b.html5_comments,b.shebang):a,token:null,prev:null,peeked:null,in_function:0,in_directives:!0,in_loop:0,labels:[]};O.token=e();var P=q(function(){var a;switch(r(),O.token.type){case"string":var h=!1;O.in_directives===!0&&((R(d(),"punc",";")||d().nlb)&&O.token.raw.indexOf("\\")===-1?O.input.add_directive(O.token.value):O.in_directives=!1);var h=O.in_directives,i=t();return h?new ja({start:i.body.start,end:i.body.end,quote:i.body.quote,value:i.body.value}):i;case"num":case"regexp":case"operator":case"atom":return t();case"name":return R(d(),"punc",":")?s():t();case"punc":switch(O.token.value){case"{":return new ma({start:O.token,body:z(),end:f()});case"[":case"(":return t();case";":return O.in_directives=!1,e(),new na;default:j()}case"keyword":switch(a=O.token.value,e(),a){case"break":return u(Ia);case"continue":return u(Ja);case"debugger":return o(),new ia;case"do":return new sa({body:M(P),condition:(k("keyword","while"),a=p(),o(!0),a)});case"while":return new ta({condition:p(),body:M(P)});case"for":return v();case"function":return T(Ca);case"if":return y();case"return":return 0!=O.in_function||b.bare_returns||g("'return' outside of function"),new Fa({value:c("punc",";")?(e(),null):n()?null:(a=ea(!0),o(),a)});case"switch":return new La({expression:p(),body:M(A)});case"throw":return O.token.nlb&&g("Illegal newline after 'throw'"),new Ga({value:(a=ea(!0),o(),a)});case"try":return B();case"var":return a=U(),o(),a;case"const":return a=V(),o(),a;case"with":return O.input.has_directive("use strict")&&g("Strict mode may not include a with statement"),new wa({expression:p(),body:P()});default:j()}}}),T=function(a){var b=a===Ca,d=c("name")?I(b?sb:tb):null;return b&&!d&&j(),m("("),new a({name:d,argnames:function(a,b){for(;!c("punc",")");)a?a=!1:m(","),b.push(I(rb));return e(),b}(!0,[]),body:function(a,b){++O.in_function,O.in_directives=!0,O.input.push_directives_stack(),O.in_loop=0,O.labels=[];var c=z();return O.input.pop_directives_stack(),--O.in_function,O.in_loop=a,O.labels=b,c}(O.in_loop,O.labels)})},U=function(a){return new Ta({start:f(),definitions:C(a,!1),end:f()})},V=function(){return new Ua({start:f(),definitions:C(!1,!0),end:f()})},W=function(a){var b=O.token;k("operator","new");var d,g=X(!1);return c("punc","(")?(e(),d=E(")")):d=[],_(new Xa({start:b,expression:g,args:d,end:f()}),a)},X=function(a){if(c("operator","new"))return W(a);var b=O.token;if(c("punc")){switch(b.value){case"(":e();var d=ea(!0);return d.start=b,d.end=O.token,m(")"),_(d,a);case"[":return _(Y(),a);case"{":return _($(),a)}j()}if(c("keyword","function")){e();var g=T(Ba);return g.start=b,g.end=f(),_(g,a)}return ec[O.token.type]?_(D(),a):void j()},Y=q(function(){return m("["),new gb({elements:E("]",!b.strict,!0)})}),Z=q(function(){return T(Aa)}),$=q(function(){m("{");for(var a=!0,d=[];!c("punc","}")&&(a?a=!1:m(","),b.strict||!c("punc","}"));){var g=O.token,h=g.type,i=F();if("name"==h&&!c("punc",":")){if("get"==i){d.push(new lb({start:g,key:D(),value:Z(),end:f()}));continue}if("set"==i){d.push(new kb({start:g,key:D(),value:Z(),end:f()}));continue}}m(":"),d.push(new jb({start:g,quote:g.quote,key:i,value:ea(!1),end:f()}))}return e(),new hb({properties:d})}),_=function(a,b){var d=a.start;if(c("punc","."))return e(),_(new $a({start:d,expression:a,property:G(),end:f()}),b);if(c("punc","[")){e();var g=ea(!0);return m("]"),_(new _a({start:d,expression:a,property:g,end:f()}),b)}return b&&c("punc","(")?(e(),_(new Wa({start:d,expression:a,args:E(")"),end:f()}),!0)):a},aa=function(a){var b=O.token;if(c("operator")&&_b(b.value)){e(),r();var d=J(bb,b.value,aa(a));return d.start=b,d.end=f(),d}for(var g=X(a);c("operator")&&ac(O.token.value)&&!O.token.nlb;)g=J(cb,O.token.value,g),g.start=b,g.end=O.token,e();return g},ba=function(a,b,d){var f=c("operator")?O.token.value:null;"in"==f&&d&&(f=null);var g=null!=f?cc[f]:null;if(null!=g&&g>b){e();var h=ba(aa(!0),g,d);return ba(new db({start:a.start,left:a,operator:f,right:h,end:h.end}),b,d)}return a},ca=function(a){var b=O.token,d=K(a);if(c("operator","?")){e();var g=ea(!1);return m(":"),new eb({start:b,condition:d,consequent:g,alternative:ea(!1,a),end:f()})}return d},da=function(a){var b=O.token,d=ca(a),h=O.token.value;if(c("operator")&&bc(h)){if(L(d))return e(),new fb({start:b,left:d,operator:h,right:da(a),end:f()});g("Invalid assignment")}return d},ea=function(a,b){var f=O.token,g=da(b);return a&&c("punc",",")?(e(),new Ya({start:f,car:g,cdr:ea(!0,b),end:d()})):g};return b.expression?ea(!0):function(){var a=O.token,d=[];for(O.input.push_directives_stack();!c("eof");)d.push(P());O.input.pop_directives_stack();var e=f(),g=b.toplevel;return g?(g.body=g.body.concat(d),g.end=e):g=new ya({start:a,body:d,end:e}),g}()}function U(a,b){D.call(this),this.before=a,this.after=b}function V(a,b,c){this.name=c.name,this.orig=[c],this.scope=a,this.references=[],this.global=!1,this.mangled_name=null,this.undeclared=!1,this.index=b,this.id=V.next_id++}function W(a){var b=a.value,c=a.type;return"comment2"==c?/@preserve|@license|@cc_on/i.test(b):"comment5"==c}function X(a){return"comment5"==a.type}function Y(a){function b(a,b){return a.replace(/[\u0000-\u001f\u007f-\uffff]/g,function(a){var c=a.charCodeAt(0).toString(16);if(c.length<=2&&!b){for(;c.length<2;)c="0"+c;return"\\x"+c}for(;c.length<4;)c="0"+c;return"\\u"+c})}function c(c,d){function e(){return"'"+c.replace(/\x27/g,"\\'")+"'"}function f(){return'"'+c.replace(/\x22/g,'\\"')+'"'}var g=0,h=0;switch(c=c.replace(/[\\\b\f\n\r\v\t\x22\x27\u2028\u2029\0\ufeff]/g,function(b,d){switch(b){case'"':return++g,'"';case"'":return++h,"'";case"\\":return"\\\\";case"\n":return"\\n";case"\r":return"\\r";case"\t":return"\\t";case"\b":return"\\b";case"\f":return"\\f";case"\v":return a.screw_ie8?"\\v":"\\x0B";case"\u2028":return"\\u2028";case"\u2029":return"\\u2029";case"\ufeff":return"\\ufeff";case"\0":return/[0-7]/.test(c.charAt(d+1))?"\\x00":"\\0"}return b}),a.ascii_only&&(c=b(c)),a.quote_style){case 1:return e();case 2:return f();case 3:return"'"==d?e():f();default:return g>h?e():f()}}function d(b,d){var e=c(b,d);return a.inline_script&&(e=e.replace(/<\x2fscript([>\/\t\n\f\r ])/gi,"<\\/script$1"),e=e.replace(/\x3c!--/g,"\\x3c!--"),e=e.replace(/--\x3e/g,"--\\x3e")),e}function e(c){return c=c.toString(),a.ascii_only&&(c=b(c,!0)),c}function f(b){return i(" ",a.indent_start+z-b*a.indent_level)}function g(){return H.charAt(H.length-1)}function h(b){b=String(b);var c=b.charAt(0);if(F&&(F=!1,c&&!(";}".indexOf(c)<0)||/[;]$/.test(H)||(a.semicolons||J(c)?(D+=";",A++,C++):(I(),D+="\n",C++,B++,A=0,/^\s+$/.test(b)&&(F=!0)),a.beautify||(E=!1))),!a.beautify&&a.preserve_line&&R[R.length-1])for(var d=R[R.length-1].start.line;B<d;)I(),D+="\n",C++,B++,A=0,E=!1;if(E){var e=g();(M(e)&&(M(c)||"\\"==c)||"/"==c&&c==e||("+"==c||"-"==c)&&c==H)&&(D+=" ",A++,C++),E=!1}D+=b,C+=b.length;var f=b.split(/\r?\n/),h=f.length-1;B+=h,A+=f[0].length,h>0&&(I(),A=f[h].length),H=b}function j(){F=!1,h(";")}function k(){return z+a.indent_level}function m(a){var b;return h("{"),O(),N(k(),function(){b=a()}),L(),h("}"),b}function q(a){h("(");var b=a();return h(")"),b}function r(a){h("[");var b=a();return h("]"),b}function s(){h(","),K()}function t(){h(":"),a.space_colon&&K()}function u(){return G&&I(),D}a=l(a,{indent_start:0,indent_level:4,quote_keys:!1,space_colon:!0,ascii_only:!1,unescape_regexps:!1,inline_script:!1,width:80,max_line_len:!1,beautify:!1,source_map:null,bracketize:!1,semicolons:!0,comments:!1,shebang:!0,preserve_line:!1,screw_ie8:!0,preamble:null,quote_style:0,keep_quoted_props:!1,wrap_iife:!1},!0);var v=a.shebang?X:o;if(a.comments){var x=a.comments;if("string"==typeof a.comments&&/^\/.*\/[a-zA-Z]*$/.test(a.comments)){var y=a.comments.lastIndexOf("/");x=new RegExp(a.comments.substr(1,y-1),a.comments.substr(y+1))}v=x instanceof RegExp?function(a){return"comment5"==a.type||x.test(a.value)}:"function"==typeof x?function(a){return"comment5"==a.type||x(this,a)}:"some"===x?W:p}var z=0,A=0,B=1,C=0,D="",E=!1,F=!1,G=0,H=null,I=a.max_line_len?function(){if(A>a.max_line_len){if(G){var b=D.slice(0,G),c=D.slice(G);D=b+"\n"+c,B++,C++,A=c.length}A>a.max_line_len&&ga.warn("Output exceeds {max_line_len} characters",a)}G=0}:n,J=w("( [ + * / - , ."),K=a.beautify?function(){h(" ")}:function(){E=!0},L=a.beautify?function(b){a.beautify&&h(f(b?.5:0))}:n,N=a.beautify?function(a,b){a===!0&&(a=k());var c=z;z=a;var d=b();return z=c,d}:function(a,b){return b()},O=a.beautify?function(){h("\n")}:a.max_line_len?function(){I(),G=D.length}:n,P=a.beautify?function(){h(";")}:function(){F=!0},Q=a.source_map?function(b,c){try{b&&a.source_map.add(b.file||"?",B,A,b.line,b.col,c||"name"!=b.type?c:b.value)}catch(a){ga.warn("Couldn't figure out mapping for {file}:{line},{col} → {cline},{ccol} [{name}]",{file:b.file,line:b.line,col:b.col,cline:B,ccol:A,name:c||""})}}:n;a.preamble&&h(a.preamble.replace(/\r\n?|[\n\u2028\u2029]|\s*$/g,"\n"));var R=[];return{get:u,toString:u,indent:L,indentation:function(){return z},current_width:function(){return A-z},should_break:function(){return a.width&&this.current_width()>=a.width},newline:O,print:h,space:K,comma:s,colon:t,last:function(){return H},semicolon:P,force_semicolon:j,to_ascii:b,print_name:function(a){h(e(a))},print_string:function(a,b,c){var e=d(a,b);c===!0&&e.indexOf("\\")===-1&&(gc.test(D)||j(),j()),h(e)},encode_string:d,next_indent:k,with_indent:N,with_block:m,with_parens:q,with_square:r,add_mapping:Q,option:function(b){return a[b]},comment_filter:v,line:function(){return B},col:function(){return A},pos:function(){return C},push_node:function(a){R.push(a)},pop_node:function(){return R.pop()},parent:function(a){return R[R.length-2-(a||0)]}}}function Z(a,b){if(!(this instanceof Z))return new Z(a,b);U.call(this,this.before,this.after),this.options=l(a,{sequences:!b,properties:!b,dead_code:!b,drop_debugger:!b,unsafe:!1,unsafe_comps:!1,unsafe_proto:!1,conditionals:!b,comparisons:!b,evaluate:!b,booleans:!b,loops:!b,unused:!b,toplevel:!!a.top_retain,top_retain:null,hoist_funs:!b,keep_fargs:!0,keep_fnames:!1,hoist_vars:!1,if_return:!b,join_vars:!b,collapse_vars:!b,reduce_vars:!b,cascade:!b,side_effects:!b,pure_getters:!1,pure_funcs:null,negate_iife:!b,screw_ie8:!0,drop_console:!1,angular:!1,warnings:!0,global_defs:{},passes:1},!0);var c=this.options.pure_funcs;"function"==typeof c?this.pure_funcs=c:this.pure_funcs=c?function(a){return c.indexOf(a.expression.print_to_string())<0}:p;var d=this.options.top_retain;d instanceof RegExp?this.top_retain=function(a){return d.test(a.name)}:"function"==typeof d?this.top_retain=d:d&&("string"==typeof d&&(d=d.split(/,/)),this.top_retain=function(a){return d.indexOf(a.name)>=0});var e=this.options.sequences;this.sequences_limit=1==e?200:0|e,this.warnings_produced={}}function $(a){function b(b,e,f,g,h,i){if(d){var j=d.originalPositionFor({line:g,column:h});if(null===j.source)return;b=j.source,g=j.line,h=j.column,i=j.name||i}c.addMapping({generated:{line:e+a.dest_line_diff,column:f},original:{line:g+a.orig_line_diff,column:h},source:b,name:i})}a=l(a,{file:null,root:null,orig:null,orig_line_diff:0,dest_line_diff:0});var c=new ca.SourceMapGenerator({file:a.file,sourceRoot:a.root}),d=a.orig&&new ca.SourceMapConsumer(a.orig);return d&&Array.isArray(a.orig.sources)&&d._sources.toArray().forEach(function(a){var b=d.sourceContentFor(a,!0);b&&c.setSourceContent(a,b)}),{add:b,get:function(){return c},toString:function(){return JSON.stringify(c.toJSON())}}}function _(){function a(a){q(b,a)}var b=[];return[Object,Array,Function,Number,String,Boolean,Error,Math,Date,RegExp].forEach(function(b){Object.getOwnPropertyNames(b).map(a),b.prototype&&Object.getOwnPropertyNames(b.prototype).map(a)}),b}function aa(a,b){function c(a){return!!K(a)&&(!(r.indexOf(a)>=0)&&(!(i.indexOf(a)>=0)&&(b.only_cache?j.props.has(a):!/^[0-9.]+$/.test(a))))}function d(a){return!(n&&a in s)&&(!(m&&!m.test(a))&&(!(i.indexOf(a)>=0)&&(j.props.has(a)||p.indexOf(a)>=0)))}function e(a,b){return b?void(s[a]=!0):(c(a)&&q(p,a),void(d(a)||q(r,a)))}function f(a){if(!d(a))return a;var b=j.props.get(a);if(!b){if(o){var e="_$"+a+"$"+k+"_";!c(e)||n&&e in s||(b=e)}if(!b)do b=fc(++j.cname);while(!c(b)||n&&b in s);j.props.set(a,b)}return b}function g(a,b){var c={};try{!function a(d){d.walk(new D(function(d){if(d instanceof Ya)return a(d.cdr),!0;if(d instanceof Ab)return e(d.value,b),!0;if(d instanceof eb)return a(d.consequent),a(d.alternative),!0;throw c}))}(a)}catch(a){if(a!==c)throw a}}function h(a){return a.transform(new U(function(a){return a instanceof Ya?a.cdr=h(a.cdr):a instanceof Ab?a.value=f(a.value):a instanceof eb&&(a.consequent=h(a.consequent),a.alternative=h(a.alternative)),a}))}b=l(b,{reserved:null,cache:null,only_cache:!1,regex:null,ignore_quoted:!1,debug:!1});var i=b.reserved;null==i&&(i=_());var j=b.cache;null==j&&(j={cname:-1,props:new y});var k,m=b.regex,n=b.ignore_quoted,o=b.debug!==!1;o&&(k=b.debug===!0?"":b.debug);var p=[],r=[],s={};return a.walk(new D(function(a){a instanceof jb?e(a.key,n&&a.quote):a instanceof ib?e(a.key.name):a instanceof $a?e(a.property):a instanceof _a&&g(a.property,n)})),a.transform(new U(function(a){a instanceof jb?n&&a.quote||(a.key=f(a.key)):a instanceof ib?a.key.name=f(a.key.name):a instanceof $a?a.property=f(a.property):a instanceof _a&&(n||(a.property=h(a.property)))}))}var ba=a("util"),ca=a("source-map"),da=c;k.prototype=Object.create(Error.prototype),k.prototype.constructor=k,k.prototype.name="DefaultsError",j(k),k.croak=function(a,b){throw new k(a,b)};var ea=function(){function a(a,f,g){function h(){var h=f(a[i],i),l=h instanceof d;return l&&(h=h.v),h instanceof b?(h=h.v,h instanceof c?k.push.apply(k,g?h.v.slice().reverse():h.v):k.push(h)):h!==e&&(h instanceof c?j.push.apply(j,g?h.v.slice().reverse():h.v):j.push(h)),l}var i,j=[],k=[];if(a instanceof Array)if(g){for(i=a.length;--i>=0&&!h(););j.reverse(),k.reverse()}else for(i=0;i<a.length&&!h();++i);else for(i in a)if(z(a,i)&&h())break;return k.concat(j)}function b(a){this.v=a}function c(a){this.v=a}function d(a){this.v=a}a.at_top=function(a){return new b(a)},a.splice=function(a){return new c(a)},a.last=function(a){return new d(a)};var e=a.skip={};return a}();y.prototype={set:function(a,b){return this.has(a)||++this._size,this._values["$"+a]=b,this},add:function(a,b){return this.has(a)?this.get(a).push(b):this.set(a,[b]),this},get:function(a){return this._values["$"+a]},del:function(a){return this.has(a)&&(--this._size,delete this._values["$"+a]),this},has:function(a){return"$"+a in this._values},each:function(a){for(var b in this._values)a(this._values[b],b.substr(1))},size:function(){return this._size},map:function(a){var b=[];for(var c in this._values)b.push(a(this._values[c],c.substr(1)));return b},toObject:function(){return this._values}},y.fromObject=function(a){var b=new y;return b._size=m(b._values,a),b};var fa=B("Token","type value line col pos endline endcol endpos nlb comments_before file raw",{},null),ga=B("Node","start end",{clone:function(){return new this.CTOR(this)},$documentation:"Base class of all AST nodes",$propdoc:{start:"[AST_Token] The first token of this node",end:"[AST_Token] The last token of this node"},_walk:function(a){return a._visit(this)},walk:function(a){return this._walk(a)}},null);ga.warn_function=null,ga.warn=function(a,b){ga.warn_function&&ga.warn_function(r(a,b))};var ha=B("Statement",null,{$documentation:"Base class of all statements"}),ia=B("Debugger",null,{$documentation:"Represents a debugger statement"},ha),ja=B("Directive","value scope quote",{$documentation:'Represents a directive, like "use strict";',$propdoc:{value:"[string] The value of this directive as a plain string (it's not an AST_String!)",scope:"[AST_Scope/S] The scope that this directive affects",quote:"[string] the original quote character"}},ha),ka=B("SimpleStatement","body",{$documentation:"A statement consisting of an expression, i.e. a = 1 + 2",$propdoc:{body:"[AST_Node] an expression node (should not be instanceof AST_Statement)"},_walk:function(a){return a._visit(this,function(){this.body._walk(a)})}},ha),la=B("Block","body",{$documentation:"A body of statements (usually bracketed)",$propdoc:{body:"[AST_Statement*] an array of statements"},_walk:function(a){return a._visit(this,function(){C(this,a)})}},ha),ma=B("BlockStatement",null,{$documentation:"A block statement"},la),na=B("EmptyStatement",null,{$documentation:"The empty statement (empty block or simply a semicolon)",_walk:function(a){return a._visit(this)}},ha),oa=B("StatementWithBody","body",{$documentation:"Base class for all statements that contain one nested body: `For`, `ForIn`, `Do`, `While`, `With`",$propdoc:{body:"[AST_Statement] the body; this should always be present, even if it's an AST_EmptyStatement"},_walk:function(a){return a._visit(this,function(){this.body._walk(a)})}},ha),pa=B("LabeledStatement","label",{$documentation:"Statement with a label",$propdoc:{label:"[AST_Label] a label definition"},_walk:function(a){return a._visit(this,function(){this.label._walk(a),this.body._walk(a)})}},oa),qa=B("IterationStatement",null,{$documentation:"Internal class.  All loops inherit from it."},oa),ra=B("DWLoop","condition",{$documentation:"Base class for do/while statements",$propdoc:{condition:"[AST_Node] the loop condition.  Should not be instanceof AST_Statement"}},qa),sa=B("Do",null,{$documentation:"A `do` statement",_walk:function(a){return a._visit(this,function(){this.body._walk(a),this.condition._walk(a)})}},ra),ta=B("While",null,{$documentation:"A `while` statement",_walk:function(a){return a._visit(this,function(){this.condition._walk(a),this.body._walk(a)})}},ra),ua=B("For","init condition step",{$documentation:"A `for` statement",$propdoc:{init:"[AST_Node?] the `for` initialization code, or null if empty",condition:"[AST_Node?] the `for` termination clause, or null if empty",step:"[AST_Node?] the `for` update clause, or null if empty"},_walk:function(a){return a._visit(this,function(){this.init&&this.init._walk(a),this.condition&&this.condition._walk(a),this.step&&this.step._walk(a),this.body._walk(a)})}},qa),va=B("ForIn","init name object",{$documentation:"A `for ... in` statement",$propdoc:{init:"[AST_Node] the `for/in` initialization code",name:"[AST_SymbolRef?] the loop variable, only if `init` is AST_Var",object:"[AST_Node] the object that we're looping through"},_walk:function(a){return a._visit(this,function(){this.init._walk(a),this.object._walk(a),this.body._walk(a)})}},qa),wa=B("With","expression",{$documentation:"A `with` statement",$propdoc:{expression:"[AST_Node] the `with` expression"},_walk:function(a){return a._visit(this,function(){this.expression._walk(a),this.body._walk(a)})}},oa),xa=B("Scope","directives variables functions uses_with uses_eval parent_scope enclosed cname",{$documentation:"Base class for all statements introducing a lexical scope",$propdoc:{directives:"[string*/S] an array of directives declared in this scope",variables:"[Object/S] a map of name -> SymbolDef for all variables/functions defined in this scope",functions:"[Object/S] like `variables`, but only lists function declarations",uses_with:"[boolean/S] tells whether this scope uses the `with` statement",uses_eval:"[boolean/S] tells whether this scope contains a direct call to the global `eval`",parent_scope:"[AST_Scope?/S] link to the parent scope",enclosed:"[SymbolDef*/S] a list of all symbol definitions that are accessed from this scope or any subscopes",cname:"[integer/S] current index for mangling variables (used internally by the mangler)"}},la),ya=B("Toplevel","globals",{$documentation:"The toplevel scope",$propdoc:{globals:"[Object/S] a map of name -> SymbolDef for all undeclared names"},wrap_enclose:function(a){var b=this,c=[],d=[];a.forEach(function(a){var b=a.lastIndexOf(":");c.push(a.substr(0,b)),d.push(a.substr(b+1))});var e="(function("+d.join(",")+"){ '$ORIG'; })("+c.join(",")+")";return e=T(e),e=e.transform(new U(function(a){if(a instanceof ja&&"$ORIG"==a.value)return ea.splice(b.body)}))},wrap_commonjs:function(a,b){var c=this,d=[];b&&(c.figure_out_scope(),c.walk(new D(function(a){a instanceof ob&&a.definition().global&&(h(function(b){return b.name==a.name},d)||d.push(a))})));var e="(function(exports, global){ '$ORIG'; '$EXPORTS'; global['"+a+"'] = exports; }({}, (function(){return this}())))";return e=T(e),e=e.transform(new U(function(a){
-if(a instanceof ja)switch(a.value){case"$ORIG":return ea.splice(c.body);case"$EXPORTS":var b=[];return d.forEach(function(a){b.push(new ka({body:new fb({left:new _a({expression:new wb({name:"exports"}),property:new Ab({value:a.name})}),operator:"=",right:new wb(a)})}))}),ea.splice(b)}}))}},xa),za=B("Lambda","name argnames uses_arguments",{$documentation:"Base class for functions",$propdoc:{name:"[AST_SymbolDeclaration?] the name of this function",argnames:"[AST_SymbolFunarg*] array of function arguments",uses_arguments:"[boolean/S] tells whether this function accesses the arguments array"},_walk:function(a){return a._visit(this,function(){this.name&&this.name._walk(a);for(var b=this.argnames,c=0,d=b.length;c<d;c++)b[c]._walk(a);C(this,a)})}},xa),Aa=B("Accessor",null,{$documentation:"A setter/getter function.  The `name` property is always null."},za),Ba=B("Function",null,{$documentation:"A function expression"},za),Ca=B("Defun",null,{$documentation:"A function definition"},za),Da=B("Jump",null,{$documentation:"Base class for “jumps” (for now that's `return`, `throw`, `break` and `continue`)"},ha),Ea=B("Exit","value",{$documentation:"Base class for “exits” (`return` and `throw`)",$propdoc:{value:"[AST_Node?] the value returned or thrown by this statement; could be null for AST_Return"},_walk:function(a){return a._visit(this,this.value&&function(){this.value._walk(a)})}},Da),Fa=B("Return",null,{$documentation:"A `return` statement"},Ea),Ga=B("Throw",null,{$documentation:"A `throw` statement"},Ea),Ha=B("LoopControl","label",{$documentation:"Base class for loop control statements (`break` and `continue`)",$propdoc:{label:"[AST_LabelRef?] the label, or null if none"},_walk:function(a){return a._visit(this,this.label&&function(){this.label._walk(a)})}},Da),Ia=B("Break",null,{$documentation:"A `break` statement"},Ha),Ja=B("Continue",null,{$documentation:"A `continue` statement"},Ha),Ka=B("If","condition alternative",{$documentation:"A `if` statement",$propdoc:{condition:"[AST_Node] the `if` condition",alternative:"[AST_Statement?] the `else` part, or null if not present"},_walk:function(a){return a._visit(this,function(){this.condition._walk(a),this.body._walk(a),this.alternative&&this.alternative._walk(a)})}},oa),La=B("Switch","expression",{$documentation:"A `switch` statement",$propdoc:{expression:"[AST_Node] the `switch` “discriminant”"},_walk:function(a){return a._visit(this,function(){this.expression._walk(a),C(this,a)})}},la),Ma=B("SwitchBranch",null,{$documentation:"Base class for `switch` branches"},la),Na=B("Default",null,{$documentation:"A `default` switch branch"},Ma),Oa=B("Case","expression",{$documentation:"A `case` switch branch",$propdoc:{expression:"[AST_Node] the `case` expression"},_walk:function(a){return a._visit(this,function(){this.expression._walk(a),C(this,a)})}},Ma),Pa=B("Try","bcatch bfinally",{$documentation:"A `try` statement",$propdoc:{bcatch:"[AST_Catch?] the catch block, or null if not present",bfinally:"[AST_Finally?] the finally block, or null if not present"},_walk:function(a){return a._visit(this,function(){C(this,a),this.bcatch&&this.bcatch._walk(a),this.bfinally&&this.bfinally._walk(a)})}},la),Qa=B("Catch","argname",{$documentation:"A `catch` node; only makes sense as part of a `try` statement",$propdoc:{argname:"[AST_SymbolCatch] symbol for the exception"},_walk:function(a){return a._visit(this,function(){this.argname._walk(a),C(this,a)})}},la),Ra=B("Finally",null,{$documentation:"A `finally` node; only makes sense as part of a `try` statement"},la),Sa=B("Definitions","definitions",{$documentation:"Base class for `var` or `const` nodes (variable declarations/initializations)",$propdoc:{definitions:"[AST_VarDef*] array of variable definitions"},_walk:function(a){return a._visit(this,function(){for(var b=this.definitions,c=0,d=b.length;c<d;c++)b[c]._walk(a)})}},ha),Ta=B("Var",null,{$documentation:"A `var` statement"},Sa),Ua=B("Const",null,{$documentation:"A `const` statement"},Sa),Va=B("VarDef","name value",{$documentation:"A variable declaration; only appears in a AST_Definitions node",$propdoc:{name:"[AST_SymbolVar|AST_SymbolConst] name of the variable",value:"[AST_Node?] initializer, or null of there's no initializer"},_walk:function(a){return a._visit(this,function(){this.name._walk(a),this.value&&this.value._walk(a)})}}),Wa=B("Call","expression args",{$documentation:"A function call expression",$propdoc:{expression:"[AST_Node] expression to invoke as function",args:"[AST_Node*] array of arguments"},_walk:function(a){return a._visit(this,function(){this.expression._walk(a);for(var b=this.args,c=0,d=b.length;c<d;c++)b[c]._walk(a)})}}),Xa=B("New",null,{$documentation:"An object instantiation.  Derives from a function call since it has exactly the same properties"},Wa),Ya=B("Seq","car cdr",{$documentation:"A sequence expression (two comma-separated expressions)",$propdoc:{car:"[AST_Node] first element in sequence",cdr:"[AST_Node] second element in sequence"},$cons:function(a,b){var c=new Ya(a);return c.car=a,c.cdr=b,c},$from_array:function(a){if(0==a.length)return null;if(1==a.length)return a[0].clone();for(var b=null,c=a.length;--c>=0;)b=Ya.cons(a[c],b);for(var d=b;d;){if(d.cdr&&!d.cdr.cdr){d.cdr=d.cdr.car;break}d=d.cdr}return b},to_array:function(){for(var a=this,b=[];a;){if(b.push(a.car),a.cdr&&!(a.cdr instanceof Ya)){b.push(a.cdr);break}a=a.cdr}return b},add:function(a){for(var b=this;b;){if(!(b.cdr instanceof Ya)){var c=Ya.cons(b.cdr,a);return b.cdr=c}b=b.cdr}},len:function(){return this.cdr instanceof Ya?this.cdr.len()+1:2},_walk:function(a){return a._visit(this,function(){this.car._walk(a),this.cdr&&this.cdr._walk(a)})}}),Za=B("PropAccess","expression property",{$documentation:'Base class for property access expressions, i.e. `a.foo` or `a["foo"]`',$propdoc:{expression:"[AST_Node] the “container” expression",property:"[AST_Node|string] the property to access.  For AST_Dot this is always a plain string, while for AST_Sub it's an arbitrary AST_Node"}}),$a=B("Dot",null,{$documentation:"A dotted property access expression",_walk:function(a){return a._visit(this,function(){this.expression._walk(a)})}},Za),_a=B("Sub",null,{$documentation:'Index-style property access, i.e. `a["foo"]`',_walk:function(a){return a._visit(this,function(){this.expression._walk(a),this.property._walk(a)})}},Za),ab=B("Unary","operator expression",{$documentation:"Base class for unary expressions",$propdoc:{operator:"[string] the operator",expression:"[AST_Node] expression that this unary operator applies to"},_walk:function(a){return a._visit(this,function(){this.expression._walk(a)})}}),bb=B("UnaryPrefix",null,{$documentation:"Unary prefix expression, i.e. `typeof i` or `++i`"},ab),cb=B("UnaryPostfix",null,{$documentation:"Unary postfix expression, i.e. `i++`"},ab),db=B("Binary","left operator right",{$documentation:"Binary expression, i.e. `a + b`",$propdoc:{left:"[AST_Node] left-hand side expression",operator:"[string] the operator",right:"[AST_Node] right-hand side expression"},_walk:function(a){return a._visit(this,function(){this.left._walk(a),this.right._walk(a)})}}),eb=B("Conditional","condition consequent alternative",{$documentation:"Conditional expression using the ternary operator, i.e. `a ? b : c`",$propdoc:{condition:"[AST_Node]",consequent:"[AST_Node]",alternative:"[AST_Node]"},_walk:function(a){return a._visit(this,function(){this.condition._walk(a),this.consequent._walk(a),this.alternative._walk(a)})}}),fb=B("Assign",null,{$documentation:"An assignment expression — `a = b + 5`"},db),gb=B("Array","elements",{$documentation:"An array literal",$propdoc:{elements:"[AST_Node*] array of elements"},_walk:function(a){return a._visit(this,function(){for(var b=this.elements,c=0,d=b.length;c<d;c++)b[c]._walk(a)})}}),hb=B("Object","properties",{$documentation:"An object literal",$propdoc:{properties:"[AST_ObjectProperty*] array of properties"},_walk:function(a){return a._visit(this,function(){for(var b=this.properties,c=0,d=b.length;c<d;c++)b[c]._walk(a)})}}),ib=B("ObjectProperty","key value",{$documentation:"Base class for literal object properties",$propdoc:{key:"[string] the property name converted to a string for ObjectKeyVal.  For setters and getters this is an arbitrary AST_Node.",value:"[AST_Node] property value.  For setters and getters this is an AST_Function."},_walk:function(a){return a._visit(this,function(){this.value._walk(a)})}}),jb=B("ObjectKeyVal","quote",{$documentation:"A key: value object property",$propdoc:{quote:"[string] the original quote character"}},ib),kb=B("ObjectSetter",null,{$documentation:"An object setter property"},ib),lb=B("ObjectGetter",null,{$documentation:"An object getter property"},ib),mb=B("Symbol","scope name thedef",{$propdoc:{name:"[string] name of this symbol",scope:"[AST_Scope/S] the current scope (not necessarily the definition scope)",thedef:"[SymbolDef/S] the definition of this symbol"},$documentation:"Base class for all symbols"}),nb=B("SymbolAccessor",null,{$documentation:"The name of a property accessor (setter/getter function)"},mb),ob=B("SymbolDeclaration","init",{$documentation:"A declaration symbol (symbol in var/const, function name or argument, symbol in catch)",$propdoc:{init:"[AST_Node*/S] array of initializers for this declaration."}},mb),pb=B("SymbolVar",null,{$documentation:"Symbol defining a variable"},ob),qb=B("SymbolConst",null,{$documentation:"A constant declaration"},ob),rb=B("SymbolFunarg",null,{$documentation:"Symbol naming a function argument"},pb),sb=B("SymbolDefun",null,{$documentation:"Symbol defining a function"},ob),tb=B("SymbolLambda",null,{$documentation:"Symbol naming a function expression"},ob),ub=B("SymbolCatch",null,{$documentation:"Symbol naming the exception in catch"},ob),vb=B("Label","references",{$documentation:"Symbol naming a label (declaration)",$propdoc:{references:"[AST_LoopControl*] a list of nodes referring to this label"},initialize:function(){this.references=[],this.thedef=this}},mb),wb=B("SymbolRef",null,{$documentation:"Reference to some symbol (not definition/declaration)"},mb),xb=B("LabelRef",null,{$documentation:"Reference to a label symbol"},mb),yb=B("This",null,{$documentation:"The `this` symbol"},mb),zb=B("Constant",null,{$documentation:"Base class for all constants",getValue:function(){return this.value}}),Ab=B("String","value quote",{$documentation:"A string literal",$propdoc:{value:"[string] the contents of this string",quote:"[string] the original quote character"}},zb),Bb=B("Number","value literal",{$documentation:"A number literal",$propdoc:{value:"[number] the numeric value",literal:"[string] numeric value as string (optional)"}},zb),Cb=B("RegExp","value",{$documentation:"A regexp literal",$propdoc:{value:"[RegExp] the actual regexp"}},zb),Db=B("Atom",null,{$documentation:"Base class for atoms"},zb),Eb=B("Null",null,{$documentation:"The `null` atom",value:null},Db),Fb=B("NaN",null,{$documentation:"The impossible value",value:NaN},Db),Gb=B("Undefined",null,{$documentation:"The `undefined` value",value:void 0},Db),Hb=B("Hole",null,{$documentation:"A hole in an array",value:void 0},Db),Ib=B("Infinity",null,{$documentation:"The `Infinity` value",value:1/0},Db),Jb=B("Boolean",null,{$documentation:"Base class for booleans"},Db),Kb=B("False",null,{$documentation:"The `false` atom",value:!1},Jb),Lb=B("True",null,{$documentation:"The `true` atom",value:!0},Jb);D.prototype={_visit:function(a,b){this.push(a);var c=this.visit(a,b?function(){b.call(a)}:n);return!c&&b&&b.call(a),this.pop(a),c},parent:function(a){return this.stack[this.stack.length-2-(a||0)]},push:function(a){a instanceof za?this.directives=Object.create(this.directives):a instanceof ja&&(this.directives[a.value]=!this.directives[a.value]||"up"),this.stack.push(a)},pop:function(a){this.stack.pop(),a instanceof za&&(this.directives=Object.getPrototypeOf(this.directives))},self:function(){return this.stack[this.stack.length-1]},find_parent:function(a){for(var b=this.stack,c=b.length;--c>=0;){var d=b[c];if(d instanceof a)return d}},has_directive:function(a){var b=this.directives[a];if(b)return b;var c=this.stack[this.stack.length-1];if(c instanceof xa)for(var d=0;d<c.body.length;++d){var e=c.body[d];if(!(e instanceof ja))break;if(e.value==a)return!0}},in_boolean_context:function(){for(var a=this.stack,b=a.length,c=a[--b];b>0;){var d=a[--b];if(d instanceof Ka&&d.condition===c||d instanceof eb&&d.condition===c||d instanceof ra&&d.condition===c||d instanceof ua&&d.condition===c||d instanceof bb&&"!"==d.operator&&d.expression===c)return!0;if(!(d instanceof db)||"&&"!=d.operator&&"||"!=d.operator)return!1;c=d}},loopcontrol_target:function(a){var b=this.stack;if(a)for(var c=b.length;--c>=0;){var d=b[c];if(d instanceof pa&&d.label.name==a.name)return d.body}else for(var c=b.length;--c>=0;){var d=b[c];if(d instanceof La||d instanceof qa)return d}}};var Mb="break case catch const continue debugger default delete do else finally for function if in instanceof new return switch throw try typeof var void while with",Nb="false null true",Ob="abstract boolean byte char class double enum export extends final float goto implements import int interface let long native package private protected public short static super synchronized this throws transient volatile yield "+Nb+" "+Mb,Pb="return new delete throw else case";Mb=w(Mb),Ob=w(Ob),Pb=w(Pb),Nb=w(Nb);var Qb=w(f("+-*&%=<>!?|~^")),Rb=/^0x[0-9a-f]+$/i,Sb=/^0[0-7]+$/,Tb=w(["in","instanceof","typeof","new","void","delete","++","--","+","-","!","~","&","|","^","*","/","%",">>","<<",">>>","<",">","<=",">=","==","===","!=","!==","?","=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&=","&&","||"]),Ub=w(f("  \n\r\t\f\v​           \u2028\u2029   \ufeff")),Vb=w(f("\n\r\u2028\u2029")),Wb=w(f("[{(,.;:")),Xb=w(f("[]{}(),;:")),Yb=w(f("gmsiy")),Zb={letter:new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B2\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"),digit:new RegExp("[\\u0030-\\u0039\\u0660-\\u0669\\u06F0-\\u06F9\\u07C0-\\u07C9\\u0966-\\u096F\\u09E6-\\u09EF\\u0A66-\\u0A6F\\u0AE6-\\u0AEF\\u0B66-\\u0B6F\\u0BE6-\\u0BEF\\u0C66-\\u0C6F\\u0CE6-\\u0CEF\\u0D66-\\u0D6F\\u0DE6-\\u0DEF\\u0E50-\\u0E59\\u0ED0-\\u0ED9\\u0F20-\\u0F29\\u1040-\\u1049\\u1090-\\u1099\\u17E0-\\u17E9\\u1810-\\u1819\\u1946-\\u194F\\u19D0-\\u19D9\\u1A80-\\u1A89\\u1A90-\\u1A99\\u1B50-\\u1B59\\u1BB0-\\u1BB9\\u1C40-\\u1C49\\u1C50-\\u1C59\\uA620-\\uA629\\uA8D0-\\uA8D9\\uA900-\\uA909\\uA9D0-\\uA9D9\\uA9F0-\\uA9F9\\uAA50-\\uAA59\\uABF0-\\uABF9\\uFF10-\\uFF19]"),non_spacing_mark:new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065E\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0900-\\u0902\\u093C\\u0941-\\u0948\\u094D\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09BC\\u09C1-\\u09C4\\u09CD\\u09E2\\u09E3\\u0A01\\u0A02\\u0A3C\\u0A41\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81\\u0A82\\u0ABC\\u0AC1-\\u0AC5\\u0AC7\\u0AC8\\u0ACD\\u0AE2\\u0AE3\\u0B01\\u0B3C\\u0B3F\\u0B41-\\u0B44\\u0B4D\\u0B56\\u0B62\\u0B63\\u0B82\\u0BC0\\u0BCD\\u0C3E-\\u0C40\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0CBC\\u0CBF\\u0CC6\\u0CCC\\u0CCD\\u0CE2\\u0CE3\\u0D41-\\u0D44\\u0D4D\\u0D62\\u0D63\\u0DCA\\u0DD2-\\u0DD4\\u0DD6\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F71-\\u0F7E\\u0F80-\\u0F84\\u0F86\\u0F87\\u0F90-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102D-\\u1030\\u1032-\\u1037\\u1039\\u103A\\u103D\\u103E\\u1058\\u1059\\u105E-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108D\\u109D\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B7-\\u17BD\\u17C6\\u17C9-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193B\\u1A17\\u1A18\\u1A56\\u1A58-\\u1A5E\\u1A60\\u1A62\\u1A65-\\u1A6C\\u1A73-\\u1A7C\\u1A7F\\u1B00-\\u1B03\\u1B34\\u1B36-\\u1B3A\\u1B3C\\u1B42\\u1B6B-\\u1B73\\u1B80\\u1B81\\u1BA2-\\u1BA5\\u1BA8\\u1BA9\\u1C2C-\\u1C33\\u1C36\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE0\\u1CE2-\\u1CE8\\u1CED\\u1DC0-\\u1DE6\\u1DFD-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA67C\\uA67D\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA825\\uA826\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA951\\uA980-\\uA982\\uA9B3\\uA9B6-\\uA9B9\\uA9BC\\uAA29-\\uAA2E\\uAA31\\uAA32\\uAA35\\uAA36\\uAA43\\uAA4C\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uABE5\\uABE8\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"),space_combining_mark:new RegExp("[\\u0903\\u093E-\\u0940\\u0949-\\u094C\\u094E\\u0982\\u0983\\u09BE-\\u09C0\\u09C7\\u09C8\\u09CB\\u09CC\\u09D7\\u0A03\\u0A3E-\\u0A40\\u0A83\\u0ABE-\\u0AC0\\u0AC9\\u0ACB\\u0ACC\\u0B02\\u0B03\\u0B3E\\u0B40\\u0B47\\u0B48\\u0B4B\\u0B4C\\u0B57\\u0BBE\\u0BBF\\u0BC1\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCC\\u0BD7\\u0C01-\\u0C03\\u0C41-\\u0C44\\u0C82\\u0C83\\u0CBE\\u0CC0-\\u0CC4\\u0CC7\\u0CC8\\u0CCA\\u0CCB\\u0CD5\\u0CD6\\u0D02\\u0D03\\u0D3E-\\u0D40\\u0D46-\\u0D48\\u0D4A-\\u0D4C\\u0D57\\u0D82\\u0D83\\u0DCF-\\u0DD1\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0F3E\\u0F3F\\u0F7F\\u102B\\u102C\\u1031\\u1038\\u103B\\u103C\\u1056\\u1057\\u1062-\\u1064\\u1067-\\u106D\\u1083\\u1084\\u1087-\\u108C\\u108F\\u109A-\\u109C\\u17B6\\u17BE-\\u17C5\\u17C7\\u17C8\\u1923-\\u1926\\u1929-\\u192B\\u1930\\u1931\\u1933-\\u1938\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A19-\\u1A1B\\u1A55\\u1A57\\u1A61\\u1A63\\u1A64\\u1A6D-\\u1A72\\u1B04\\u1B35\\u1B3B\\u1B3D-\\u1B41\\u1B43\\u1B44\\u1B82\\u1BA1\\u1BA6\\u1BA7\\u1BAA\\u1C24-\\u1C2B\\u1C34\\u1C35\\u1CE1\\u1CF2\\uA823\\uA824\\uA827\\uA880\\uA881\\uA8B4-\\uA8C3\\uA952\\uA953\\uA983\\uA9B4\\uA9B5\\uA9BA\\uA9BB\\uA9BD-\\uA9C0\\uAA2F\\uAA30\\uAA33\\uAA34\\uAA4D\\uAA7B\\uABE3\\uABE4\\uABE6\\uABE7\\uABE9\\uABEA\\uABEC]"),connector_punctuation:new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]")};P.prototype=Object.create(Error.prototype),P.prototype.constructor=P,P.prototype.name="SyntaxError",j(P);var $b={},_b=w(["typeof","void","delete","--","++","!","~","-","+"]),ac=w(["--","++"]),bc=w(["=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&="]),cc=function(a,b){for(var c=0;c<a.length;++c)for(var d=a[c],e=0;e<d.length;++e)b[d[e]]=c+1;return b}([["||"],["&&"],["|"],["^"],["&"],["==","===","!=","!=="],["<",">","<=",">=","in","instanceof"],[">>","<<",">>>"],["+","-"],["*","/","%"]],{}),dc=d(["for","do","while","switch"]),ec=d(["atom","num","string","regexp","name"]);U.prototype=new D,function(a){function b(b,c){b.DEFMETHOD("transform",function(b,d){var e,f;return b.push(this),b.before&&(e=b.before(this,c,d)),e===a&&(b.after?(b.stack[b.stack.length-1]=e=this,c(e,b),f=b.after(e,d),f!==a&&(e=f)):(e=this,c(e,b))),b.pop(this),e})}function c(a,b){return ea(a,function(a){return a.transform(b,!0)})}b(ga,n),b(pa,function(a,b){a.label=a.label.transform(b),a.body=a.body.transform(b)}),b(ka,function(a,b){a.body=a.body.transform(b)}),b(la,function(a,b){a.body=c(a.body,b)}),b(ra,function(a,b){a.condition=a.condition.transform(b),a.body=a.body.transform(b)}),b(ua,function(a,b){a.init&&(a.init=a.init.transform(b)),a.condition&&(a.condition=a.condition.transform(b)),a.step&&(a.step=a.step.transform(b)),a.body=a.body.transform(b)}),b(va,function(a,b){a.init=a.init.transform(b),a.object=a.object.transform(b),a.body=a.body.transform(b)}),b(wa,function(a,b){a.expression=a.expression.transform(b),a.body=a.body.transform(b)}),b(Ea,function(a,b){a.value&&(a.value=a.value.transform(b))}),b(Ha,function(a,b){a.label&&(a.label=a.label.transform(b))}),b(Ka,function(a,b){a.condition=a.condition.transform(b),a.body=a.body.transform(b),a.alternative&&(a.alternative=a.alternative.transform(b))}),b(La,function(a,b){a.expression=a.expression.transform(b),a.body=c(a.body,b)}),b(Oa,function(a,b){a.expression=a.expression.transform(b),a.body=c(a.body,b)}),b(Pa,function(a,b){a.body=c(a.body,b),a.bcatch&&(a.bcatch=a.bcatch.transform(b)),a.bfinally&&(a.bfinally=a.bfinally.transform(b))}),b(Qa,function(a,b){a.argname=a.argname.transform(b),a.body=c(a.body,b)}),b(Sa,function(a,b){a.definitions=c(a.definitions,b)}),b(Va,function(a,b){a.name=a.name.transform(b),a.value&&(a.value=a.value.transform(b))}),b(za,function(a,b){a.name&&(a.name=a.name.transform(b)),a.argnames=c(a.argnames,b),a.body=c(a.body,b)}),b(Wa,function(a,b){a.expression=a.expression.transform(b),a.args=c(a.args,b)}),b(Ya,function(a,b){a.car=a.car.transform(b),a.cdr=a.cdr.transform(b)}),b($a,function(a,b){a.expression=a.expression.transform(b)}),b(_a,function(a,b){a.expression=a.expression.transform(b),a.property=a.property.transform(b)}),b(ab,function(a,b){a.expression=a.expression.transform(b)}),b(db,function(a,b){a.left=a.left.transform(b),a.right=a.right.transform(b)}),b(eb,function(a,b){a.condition=a.condition.transform(b),a.consequent=a.consequent.transform(b),a.alternative=a.alternative.transform(b)}),b(gb,function(a,b){a.elements=c(a.elements,b)}),b(hb,function(a,b){a.properties=c(a.properties,b)}),b(ib,function(a,b){a.value=a.value.transform(b)})}(),V.next_id=1,V.prototype={unmangleable:function(a){return a||(a={}),this.global&&!a.toplevel||this.undeclared||!a.eval&&(this.scope.uses_eval||this.scope.uses_with)||a.keep_fnames&&(this.orig[0]instanceof tb||this.orig[0]instanceof sb)},mangle:function(a){var b=a.cache&&a.cache.props;if(this.global&&b&&b.has(this.name))this.mangled_name=b.get(this.name);else if(!this.mangled_name&&!this.unmangleable(a)){var c=this.scope;!a.screw_ie8&&this.orig[0]instanceof tb&&(c=c.parent_scope),this.mangled_name=c.next_mangled(a,this),this.global&&b&&b.set(this.name,this.mangled_name)}}},ya.DEFMETHOD("figure_out_scope",function(a){a=l(a,{screw_ie8:!0,cache:null});var b=this,c=b.parent_scope=null,d=new y,e=null,f=new D(function(b,g){if(a.screw_ie8&&b instanceof Qa){var h=c;return c=new xa(b),c.init_scope_vars(),c.parent_scope=h,g(),c=h,!0}if(b instanceof xa){b.init_scope_vars();var h=b.parent_scope=c,i=e,j=d;return e=c=b,d=new y,g(),c=h,e=i,d=j,!0}if(b instanceof pa){var k=b.label;if(d.has(k.name))throw new Error(r("Label {name} defined twice",k));return d.set(k.name,k),g(),d.del(k.name),!0}if(b instanceof wa)for(var l=c;l;l=l.parent_scope)l.uses_with=!0;else if(b instanceof mb&&(b.scope=c),b instanceof vb&&(b.thedef=b,b.references=[]),b instanceof tb)e.def_function(b);else if(b instanceof sb)(b.scope=e.parent_scope).def_function(b);else if(b instanceof pb||b instanceof qb){var m=e.def_variable(b);m.init=f.parent().value}else if(b instanceof ub)(a.screw_ie8?c:e).def_variable(b);else if(b instanceof xb){var n=d.get(b.name);if(!n)throw new Error(r("Undefined label {name} [{line},{col}]",{name:b.name,line:b.start.line,col:b.start.col}));b.thedef=n}});b.walk(f);var g=null,f=(b.globals=new y,new D(function(c,d){if(c instanceof za){var e=g;return g=c,d(),g=e,!0}if(c instanceof Ha&&c.label)return c.label.thedef.references.push(c),!0;if(c instanceof wb){var h=c.name;if("eval"==h&&f.parent()instanceof Wa)for(var i=c.scope;i&&!i.uses_eval;i=i.parent_scope)i.uses_eval=!0;var j=c.scope.find_variable(h);return c.scope instanceof za&&"arguments"==h&&(c.scope.uses_arguments=!0),j||(j=b.def_global(c)),c.thedef=j,c.reference(a),!0}}));b.walk(f),a.cache&&(this.cname=a.cache.cname)}),ya.DEFMETHOD("def_global",function(a){var b=this.globals,c=a.name;if(b.has(c))return b.get(c);var d=new V(this,b.size(),a);return d.undeclared=!0,d.global=!0,b.set(c,d),d}),xa.DEFMETHOD("init_scope_vars",function(){this.variables=new y,this.functions=new y,this.uses_with=!1,this.uses_eval=!1,this.parent_scope=null,this.enclosed=[],this.cname=-1}),za.DEFMETHOD("init_scope_vars",function(){xa.prototype.init_scope_vars.apply(this,arguments),this.uses_arguments=!1;var a=new Va({name:"arguments",start:this.start,end:this.end}),b=new V(this,this.variables.size(),a);this.variables.set(a.name,b)}),wb.DEFMETHOD("reference",function(a){var b=this.definition();b.references.push(this);for(var c=this.scope;c&&(q(c.enclosed,b),a.keep_fnames&&c.functions.each(function(a){q(b.scope.enclosed,a)}),c!==b.scope);)c=c.parent_scope}),xa.DEFMETHOD("find_variable",function(a){return a instanceof mb&&(a=a.name),this.variables.get(a)||this.parent_scope&&this.parent_scope.find_variable(a)}),xa.DEFMETHOD("def_function",function(a){this.functions.set(a.name,this.def_variable(a))}),xa.DEFMETHOD("def_variable",function(a){var b;return this.variables.has(a.name)?(b=this.variables.get(a.name),b.orig.push(a)):(b=new V(this,this.variables.size(),a),this.variables.set(a.name,b),b.global=!this.parent_scope),a.thedef=b}),xa.DEFMETHOD("next_mangled",function(a){var b=this.enclosed;a:for(;;){var c=fc(++this.cname);if(K(c)&&!(a.except.indexOf(c)>=0)){for(var d=b.length;--d>=0;){var e=b[d],f=e.mangled_name||e.unmangleable(a)&&e.name;if(c==f)continue a}return c}}}),Ba.DEFMETHOD("next_mangled",function(a,b){for(var c=b.orig[0]instanceof rb&&this.name&&this.name.definition(),d=c?c.mangled_name||c.name:null;;){var e=za.prototype.next_mangled.call(this,a,b);if(!d||d!=e)return e}}),mb.DEFMETHOD("unmangleable",function(a){return this.definition().unmangleable(a)}),nb.DEFMETHOD("unmangleable",function(){return!0}),vb.DEFMETHOD("unmangleable",function(){return!1}),mb.DEFMETHOD("unreferenced",function(){return 0==this.definition().references.length&&!(this.scope.uses_eval||this.scope.uses_with)}),mb.DEFMETHOD("undeclared",function(){return this.definition().undeclared}),xb.DEFMETHOD("undeclared",function(){return!1}),vb.DEFMETHOD("undeclared",function(){return!1}),mb.DEFMETHOD("definition",function(){return this.thedef}),mb.DEFMETHOD("global",function(){return this.definition().global}),ya.DEFMETHOD("_default_mangler_options",function(a){return l(a,{except:[],eval:!1,sort:!1,toplevel:!1,screw_ie8:!0,keep_fnames:!1})}),ya.DEFMETHOD("mangle_names",function(a){a=this._default_mangler_options(a),a.except.push("arguments");var b=-1,c=[];a.cache&&this.globals.each(function(b){a.except.indexOf(b.name)<0&&c.push(b)});var d=new D(function(e,f){if(e instanceof pa){var g=b;return f(),b=g,!0}if(e instanceof xa){var h=(d.parent(),[]);return e.variables.each(function(b){a.except.indexOf(b.name)<0&&h.push(b)}),void c.push.apply(c,h)}if(e instanceof vb){var i;do i=fc(++b);while(!K(i));return e.mangled_name=i,!0}if(a.screw_ie8&&e instanceof ub)return void c.push(e.definition())});this.walk(d),c.forEach(function(b){b.mangle(a)}),a.cache&&(a.cache.cname=this.cname)}),ya.DEFMETHOD("compute_char_frequency",function(a){a=this._default_mangler_options(a);var b=new D(function(b){b instanceof zb?fc.consider(b.print_to_string()):b instanceof Fa?fc.consider("return"):b instanceof Ga?fc.consider("throw"):b instanceof Ja?fc.consider("continue"):b instanceof Ia?fc.consider("break"):b instanceof ia?fc.consider("debugger"):b instanceof ja?fc.consider(b.value):b instanceof ta?fc.consider("while"):b instanceof sa?fc.consider("do while"):b instanceof Ka?(fc.consider("if"),b.alternative&&fc.consider("else")):b instanceof Ta?fc.consider("var"):b instanceof Ua?fc.consider("const"):b instanceof za?fc.consider("function"):b instanceof ua?fc.consider("for"):b instanceof va?fc.consider("for in"):b instanceof La?fc.consider("switch"):b instanceof Oa?fc.consider("case"):b instanceof Na?fc.consider("default"):b instanceof wa?fc.consider("with"):b instanceof kb?fc.consider("set"+b.key):b instanceof lb?fc.consider("get"+b.key):b instanceof jb?fc.consider(b.key):b instanceof Xa?fc.consider("new"):b instanceof yb?fc.consider("this"):b instanceof Pa?fc.consider("try"):b instanceof Qa?fc.consider("catch"):b instanceof Ra?fc.consider("finally"):b instanceof mb&&b.unmangleable(a)?fc.consider(b.name):b instanceof ab||b instanceof db?fc.consider(b.operator):b instanceof $a&&fc.consider(b.property);
-});this.walk(b),fc.sort()});var fc=function(){function a(){d=Object.create(null),c=e.split("").map(function(a){return a.charCodeAt(0)}),c.forEach(function(a){d[a]=0})}function b(a){var b="",d=54;a++;do a--,b+=String.fromCharCode(c[a%d]),a=Math.floor(a/d),d=64;while(a>0);return b}var c,d,e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_0123456789";return b.consider=function(a){for(var b=a.length;--b>=0;){var c=a.charCodeAt(b);c in d&&++d[c]}},b.sort=function(){c=t(c,function(a,b){return F(a)&&!F(b)?1:F(b)&&!F(a)?-1:d[b]-d[a]})},b.reset=a,a(),b.get=function(){return c},b.freq=function(){return d},b}();ya.DEFMETHOD("scope_warnings",function(a){a=l(a,{undeclared:!1,unreferenced:!0,assign_to_global:!0,func_arguments:!0,nested_defuns:!0,eval:!0});var b=new D(function(c){if(a.undeclared&&c instanceof wb&&c.undeclared()&&ga.warn("Undeclared symbol: {name} [{file}:{line},{col}]",{name:c.name,file:c.start.file,line:c.start.line,col:c.start.col}),a.assign_to_global){var d=null;c instanceof fb&&c.left instanceof wb?d=c.left:c instanceof va&&c.init instanceof wb&&(d=c.init),d&&(d.undeclared()||d.global()&&d.scope!==d.definition().scope)&&ga.warn("{msg}: {name} [{file}:{line},{col}]",{msg:d.undeclared()?"Accidental global?":"Assignment to global",name:d.name,file:d.start.file,line:d.start.line,col:d.start.col})}a.eval&&c instanceof wb&&c.undeclared()&&"eval"==c.name&&ga.warn("Eval is used [{file}:{line},{col}]",c.start),a.unreferenced&&(c instanceof ob||c instanceof vb)&&!(c instanceof ub)&&c.unreferenced()&&ga.warn("{type} {name} is declared but not referenced [{file}:{line},{col}]",{type:c instanceof vb?"Label":"Symbol",name:c.name,file:c.start.file,line:c.start.line,col:c.start.col}),a.func_arguments&&c instanceof za&&c.uses_arguments&&ga.warn("arguments used in function {name} [{file}:{line},{col}]",{name:c.name?c.name.name:"anonymous",file:c.start.file,line:c.start.line,col:c.start.col}),a.nested_defuns&&c instanceof Ca&&!(b.parent()instanceof xa)&&ga.warn('Function {name} declared in nested statement "{type}" [{file}:{line},{col}]',{name:c.name.name,type:b.parent().TYPE,file:c.start.file,line:c.start.line,col:c.start.col})});this.walk(b)});var gc=/^$|[;{][\s\n]*$/;!function(){function a(a,b){a.DEFMETHOD("_codegen",b)}function b(a,c){Array.isArray(a)?a.forEach(function(a){b(a,c)}):a.DEFMETHOD("needs_parens",c)}function c(a,b,c,d){var e=a.length-1;q=d,a.forEach(function(a,d){q!==!0||a instanceof ja||a instanceof na||a instanceof ka&&a.body instanceof Ab||(q=!1),a instanceof na||(c.indent(),a.print(c),d==e&&b||(c.newline(),b&&c.newline())),q===!0&&a instanceof ka&&a.body instanceof Ab&&(q=!1)}),q=!1}function d(a,b,d){a.length>0?b.with_block(function(){c(a,!1,b,d)}):b.print("{}")}function e(a,b){if(b.option("bracketize"))return void l(a.body,b);if(!a.body)return b.force_semicolon();if(a.body instanceof sa)return void l(a.body,b);for(var c=a.body;;)if(c instanceof Ka){if(!c.alternative)return void l(a.body,b);c=c.alternative}else{if(!(c instanceof oa))break;c=c.body}h(a.body,b)}function f(a,b,c){if(c)try{a.walk(new D(function(a){if(a instanceof db&&"in"==a.operator)throw b})),a.print(b)}catch(c){if(c!==b)throw c;a.print(b,!0)}else a.print(b)}function g(a){return[92,47,46,43,42,63,40,41,91,93,123,125,36,94,58,124,33,10,13,0,65279,8232,8233].indexOf(a)<0}function h(a,b){b.option("bracketize")?!a||a instanceof na?b.print("{}"):a instanceof ma?a.print(b):b.with_block(function(){b.indent(),a.print(b),b.newline()}):!a||a instanceof na?b.force_semicolon():a.print(b)}function i(a,b){return a.args.length>0||b.option("beautify")}function j(a){for(var b=a[0],c=b.length,d=1;d<a.length;++d)a[d].length<c&&(b=a[d],c=b.length);return b}function k(a){var b,c=a.toString(10),d=[c.replace(/^0\./,".").replace("e+","e")];return Math.floor(a)===a?(a>=0?d.push("0x"+a.toString(16).toLowerCase(),"0"+a.toString(8)):d.push("-0x"+(-a).toString(16).toLowerCase(),"-0"+(-a).toString(8)),(b=/^(.*?)(0+)$/.exec(a))&&d.push(b[1]+"e"+b[2].length)):(b=/^0?\.(0+)(.*)$/.exec(a))&&d.push(b[2]+"e-"+(b[1].length+b[2].length),c.substr(c.indexOf("."))),j(d)}function l(a,b){return a instanceof ma?void a.print(b):void b.with_block(function(){b.indent(),a.print(b),b.newline()})}function m(a,b){a.DEFMETHOD("add_source_map",function(a){b(this,a)})}function o(a,b){b.add_mapping(a.start)}var p=!1,q=!1;ga.DEFMETHOD("print",function(a,b){function c(){d.add_comments(a),d.add_source_map(a),e(d,a)}var d=this,e=d._codegen,f=p;d instanceof ja&&"use asm"==d.value&&a.parent()instanceof xa&&(p=!0),a.push_node(d),b||d.needs_parens(a)?a.with_parens(c):c(),a.pop_node(),d instanceof xa&&(p=f)}),ga.DEFMETHOD("print_to_string",function(a){var b=Y(a);return a||(b._readonly=!0),this.print(b),b.get()}),ga.DEFMETHOD("add_comments",function(a){if(!a._readonly){var b=this,c=b.start;if(c&&!c._comments_dumped){c._comments_dumped=!0;var d=c.comments_before||[];b instanceof Ea&&b.value&&b.value.walk(new D(function(a){if(a.start&&a.start.comments_before&&(d=d.concat(a.start.comments_before),a.start.comments_before=[]),a instanceof Ba||a instanceof gb||a instanceof hb)return!0})),d=d.filter(a.comment_filter,b),!a.option("beautify")&&d.length>0&&/comment[134]/.test(d[0].type)&&0!==a.col()&&d[0].nlb&&a.print("\n"),d.forEach(function(b){/comment[134]/.test(b.type)?(a.print("//"+b.value+"\n"),a.indent()):"comment2"==b.type?(a.print("/*"+b.value+"*/"),c.nlb?(a.print("\n"),a.indent()):a.space()):0===a.pos()&&"comment5"==b.type&&a.option("shebang")&&(a.print("#!"+b.value+"\n"),a.indent())})}}}),b(ga,function(){return!1}),b(Ba,function(a){if(A(a))return!0;if(a.option("wrap_iife")){var b=a.parent();return b instanceof Wa&&b.expression===this}return!1}),b(hb,function(a){return A(a)}),b([ab,Gb],function(a){var b=a.parent();return b instanceof Za&&b.expression===this||b instanceof Wa&&b.expression===this}),b(Ya,function(a){var b=a.parent();return b instanceof Wa||b instanceof ab||b instanceof db||b instanceof Va||b instanceof Za||b instanceof gb||b instanceof ib||b instanceof eb}),b(db,function(a){var b=a.parent();if(b instanceof Wa&&b.expression===this)return!0;if(b instanceof ab)return!0;if(b instanceof Za&&b.expression===this)return!0;if(b instanceof db){var c=b.operator,d=cc[c],e=this.operator,f=cc[e];if(d>f||d==f&&this===b.right)return!0}}),b(Za,function(a){var b=a.parent();if(b instanceof Xa&&b.expression===this)try{this.walk(new D(function(a){if(a instanceof Wa)throw b}))}catch(a){if(a!==b)throw a;return!0}}),b(Wa,function(a){var b,c=a.parent();return c instanceof Xa&&c.expression===this||this.expression instanceof Ba&&c instanceof Za&&c.expression===this&&(b=a.parent(1))instanceof fb&&b.left===c}),b(Xa,function(a){var b=a.parent();if(!i(this,a)&&(b instanceof Za||b instanceof Wa&&b.expression===this))return!0}),b(Bb,function(a){var b=a.parent();if(b instanceof Za&&b.expression===this){var c=this.getValue();if(c<0||/^0/.test(k(c)))return!0}}),b([fb,eb],function(a){var b=a.parent();return b instanceof ab||(b instanceof db&&!(b instanceof fb)||(b instanceof Wa&&b.expression===this||(b instanceof eb&&b.condition===this||(b instanceof Za&&b.expression===this||void 0))))}),a(ja,function(a,b){b.print_string(a.value,a.quote),b.semicolon()}),a(ia,function(a,b){b.print("debugger"),b.semicolon()}),oa.DEFMETHOD("_do_print_body",function(a){h(this.body,a)}),a(ha,function(a,b){a.body.print(b),b.semicolon()}),a(ya,function(a,b){c(a.body,!0,b,!0),b.print("")}),a(pa,function(a,b){a.label.print(b),b.colon(),a.body.print(b)}),a(ka,function(a,b){a.body.print(b),b.semicolon()}),a(ma,function(a,b){d(a.body,b)}),a(na,function(a,b){b.semicolon()}),a(sa,function(a,b){b.print("do"),b.space(),a._do_print_body(b),b.space(),b.print("while"),b.space(),b.with_parens(function(){a.condition.print(b)}),b.semicolon()}),a(ta,function(a,b){b.print("while"),b.space(),b.with_parens(function(){a.condition.print(b)}),b.space(),a._do_print_body(b)}),a(ua,function(a,b){b.print("for"),b.space(),b.with_parens(function(){!a.init||a.init instanceof na?b.print(";"):(a.init instanceof Sa?a.init.print(b):f(a.init,b,!0),b.print(";"),b.space()),a.condition?(a.condition.print(b),b.print(";"),b.space()):b.print(";"),a.step&&a.step.print(b)}),b.space(),a._do_print_body(b)}),a(va,function(a,b){b.print("for"),b.space(),b.with_parens(function(){a.init.print(b),b.space(),b.print("in"),b.space(),a.object.print(b)}),b.space(),a._do_print_body(b)}),a(wa,function(a,b){b.print("with"),b.space(),b.with_parens(function(){a.expression.print(b)}),b.space(),a._do_print_body(b)}),za.DEFMETHOD("_do_print",function(a,b){var c=this;b||a.print("function"),c.name&&(a.space(),c.name.print(a)),a.with_parens(function(){c.argnames.forEach(function(b,c){c&&a.comma(),b.print(a)})}),a.space(),d(c.body,a,!0)}),a(za,function(a,b){a._do_print(b)}),Ea.DEFMETHOD("_do_print",function(a,b){a.print(b),this.value&&(a.space(),this.value.print(a)),a.semicolon()}),a(Fa,function(a,b){a._do_print(b,"return")}),a(Ga,function(a,b){a._do_print(b,"throw")}),Ha.DEFMETHOD("_do_print",function(a,b){a.print(b),this.label&&(a.space(),this.label.print(a)),a.semicolon()}),a(Ia,function(a,b){a._do_print(b,"break")}),a(Ja,function(a,b){a._do_print(b,"continue")}),a(Ka,function(a,b){b.print("if"),b.space(),b.with_parens(function(){a.condition.print(b)}),b.space(),a.alternative?(e(a,b),b.space(),b.print("else"),b.space(),a.alternative instanceof Ka?a.alternative.print(b):h(a.alternative,b)):a._do_print_body(b)}),a(La,function(a,b){b.print("switch"),b.space(),b.with_parens(function(){a.expression.print(b)}),b.space(),a.body.length>0?b.with_block(function(){a.body.forEach(function(a,c){c&&b.newline(),b.indent(!0),a.print(b)})}):b.print("{}")}),Ma.DEFMETHOD("_do_print_body",function(a){this.body.length>0&&(a.newline(),this.body.forEach(function(b){a.indent(),b.print(a),a.newline()}))}),a(Na,function(a,b){b.print("default:"),a._do_print_body(b)}),a(Oa,function(a,b){b.print("case"),b.space(),a.expression.print(b),b.print(":"),a._do_print_body(b)}),a(Pa,function(a,b){b.print("try"),b.space(),d(a.body,b),a.bcatch&&(b.space(),a.bcatch.print(b)),a.bfinally&&(b.space(),a.bfinally.print(b))}),a(Qa,function(a,b){b.print("catch"),b.space(),b.with_parens(function(){a.argname.print(b)}),b.space(),d(a.body,b)}),a(Ra,function(a,b){b.print("finally"),b.space(),d(a.body,b)}),Sa.DEFMETHOD("_do_print",function(a,b){a.print(b),a.space(),this.definitions.forEach(function(b,c){c&&a.comma(),b.print(a)});var c=a.parent(),d=c instanceof ua||c instanceof va,e=d&&c.init===this;e||a.semicolon()}),a(Ta,function(a,b){a._do_print(b,"var")}),a(Ua,function(a,b){a._do_print(b,"const")}),a(Va,function(a,b){if(a.name.print(b),a.value){b.space(),b.print("="),b.space();var c=b.parent(1),d=c instanceof ua||c instanceof va;f(a.value,b,d)}}),a(Wa,function(a,b){a.expression.print(b),a instanceof Xa&&!i(a,b)||b.with_parens(function(){a.args.forEach(function(a,c){c&&b.comma(),a.print(b)})})}),a(Xa,function(a,b){b.print("new"),b.space(),Wa.prototype._codegen(a,b)}),Ya.DEFMETHOD("_do_print",function(a){this.car.print(a),this.cdr&&(a.comma(),a.should_break()&&(a.newline(),a.indent()),this.cdr.print(a))}),a(Ya,function(a,b){a._do_print(b)}),a($a,function(a,b){var c=a.expression;c.print(b),c instanceof Bb&&c.getValue()>=0&&(/[xa-f.)]/i.test(b.last())||b.print(".")),b.print("."),b.add_mapping(a.end),b.print_name(a.property)}),a(_a,function(a,b){a.expression.print(b),b.print("["),a.property.print(b),b.print("]")}),a(bb,function(a,b){var c=a.operator;b.print(c),(/^[a-z]/i.test(c)||/[+-]$/.test(c)&&a.expression instanceof bb&&/^[+-]/.test(a.expression.operator))&&b.space(),a.expression.print(b)}),a(cb,function(a,b){a.expression.print(b),b.print(a.operator)}),a(db,function(a,b){var c=a.operator;a.left.print(b),">"==c[0]&&a.left instanceof cb&&"--"==a.left.operator?b.print(" "):b.space(),b.print(c),("<"==c||"<<"==c)&&a.right instanceof bb&&"!"==a.right.operator&&a.right.expression instanceof bb&&"--"==a.right.expression.operator?b.print(" "):b.space(),a.right.print(b)}),a(eb,function(a,b){a.condition.print(b),b.space(),b.print("?"),b.space(),a.consequent.print(b),b.space(),b.colon(),a.alternative.print(b)}),a(gb,function(a,b){b.with_square(function(){var c=a.elements,d=c.length;d>0&&b.space(),c.forEach(function(a,c){c&&b.comma(),a.print(b),c===d-1&&a instanceof Hb&&b.comma()}),d>0&&b.space()})}),a(hb,function(a,b){a.properties.length>0?b.with_block(function(){a.properties.forEach(function(a,c){c&&(b.print(","),b.newline()),b.indent(),a.print(b)}),b.newline()}):b.print("{}")}),a(jb,function(a,b){var c=a.key,d=a.quote;b.option("quote_keys")?b.print_string(c+""):("number"==typeof c||!b.option("beautify")&&+c+""==c)&&parseFloat(c)>=0?b.print(k(c)):(Ob(c)?b.option("screw_ie8"):N(c))?d&&b.option("keep_quoted_props")?b.print_string(c,d):b.print_name(c):b.print_string(c,d),b.colon(),a.value.print(b)}),a(kb,function(a,b){b.print("set"),b.space(),a.key.print(b),a.value._do_print(b,!0)}),a(lb,function(a,b){b.print("get"),b.space(),a.key.print(b),a.value._do_print(b,!0)}),a(mb,function(a,b){var c=a.definition();b.print_name(c?c.mangled_name||c.name:a.name)}),a(Gb,function(a,b){b.print("void 0")}),a(Hb,n),a(Ib,function(a,b){b.print("Infinity")}),a(Fb,function(a,b){b.print("NaN")}),a(yb,function(a,b){b.print("this")}),a(zb,function(a,b){b.print(a.getValue())}),a(Ab,function(a,b){b.print_string(a.getValue(),a.quote,q)}),a(Bb,function(a,b){p&&a.start&&null!=a.start.raw?b.print(a.start.raw):b.print(k(a.getValue()))}),a(Cb,function(a,b){var c=a.getValue().toString();b.option("ascii_only")?c=b.to_ascii(c):b.option("unescape_regexps")&&(c=c.split("\\\\").map(function(a){return a.replace(/\\u[0-9a-fA-F]{4}|\\x[0-9a-fA-F]{2}/g,function(a){var b=parseInt(a.substr(2),16);return g(b)?String.fromCharCode(b):a})}).join("\\\\")),b.print(c);var d=b.parent();d instanceof db&&/^in/.test(d.operator)&&d.left===a&&b.print(" ")}),m(ga,n),m(ja,o),m(ia,o),m(mb,o),m(Da,o),m(oa,o),m(pa,n),m(za,o),m(La,o),m(Ma,o),m(ma,o),m(ya,n),m(Xa,o),m(Pa,o),m(Qa,o),m(Ra,o),m(Sa,o),m(zb,o),m(kb,function(a,b){b.add_mapping(a.start,a.key.name)}),m(lb,function(a,b){b.add_mapping(a.start,a.key.name)}),m(ib,function(a,b){b.add_mapping(a.start,a.key)})}(),Z.prototype=new U,m(Z.prototype,{option:function(a){return this.options[a]},compress:function(a){for(var b=+this.options.passes||1,c=0;c<b&&c<3;++c)(c>0||this.option("reduce_vars"))&&a.reset_opt_flags(this,!0),a=a.transform(this);return a},warn:function(a,b){if(this.options.warnings){var c=r(a,b);c in this.warnings_produced||(this.warnings_produced[c]=!0,ga.warn.apply(ga,arguments))}},clear_warnings:function(){this.warnings_produced={}},before:function(a,b,c){if(a._squeezed)return a;var d=!1;return a instanceof xa&&(a=a.hoist_declarations(this),d=!0),b(a,this),a=a.optimize(this),d&&a instanceof xa&&(a.drop_unused(this),b(a,this)),a._squeezed=!0,a}}),function(){function a(a,b){a.DEFMETHOD("optimize",function(a){var c=this;if(c._optimized)return c;if(a.has_directive("use asm"))return c;var d=b(c,a);return d._optimized=!0,d===c?d:d.transform(a)})}function b(a,b,c){return c||(c={}),b&&(c.start||(c.start=b.start),c.end||(c.end=b.end)),new a(c)}function c(a,c,d){switch(typeof c){case"string":return b(Ab,d,{value:c});case"number":return isNaN(c)?b(Fb,d):1/c<0?b(bb,d,{operator:"-",expression:b(Bb,d,{value:-c})}):b(Bb,d,{value:c});case"boolean":return b(c?Lb:Kb,d).transform(a);case"undefined":return b(Gb,d).transform(a);default:if(null===c)return b(Eb,d,{value:null});if(c instanceof RegExp)return b(Cb,d,{value:c});throw new Error(r("Can't handle constant of type: {type}",{type:typeof c}))}}function d(a,c,d){return a instanceof Wa&&a.expression===c&&(d instanceof Za||d instanceof wb&&"eval"===d.name)?b(Ya,c,{car:b(Bb,c,{value:0}),cdr:d}):d}function e(a){if(null===a)return[];if(a instanceof ma)return a.body;if(a instanceof na)return[];if(a instanceof ha)return[a];throw new Error("Can't convert thing to statement array")}function f(a){return null===a||(a instanceof na||a instanceof ma&&0==a.body.length)}function i(a){return a instanceof La?a:(a instanceof ua||a instanceof va||a instanceof ra)&&a.body instanceof ma?a.body:a}function j(a){return a.body instanceof bb&&H(a.body.operator)?a.body.expression:a.body}function k(a){return a instanceof Wa&&!(a instanceof Xa)&&(a.expression instanceof Ba||k(a.expression))}function l(a,c){function f(a,c){function e(a,b){return a instanceof wb&&(b instanceof fb&&a===b.left||b instanceof ab&&b.expression===a&&("++"==b.operator||"--"==b.operator))}function g(f,g,j){if(e(f,g))return f;var m=d(g,f,u.value);return u.value=null,n.splice(s,1),0===n.length&&(a[l]=b(na,h),i=!0),k.reset_opt_flags(c),c.warn("Replacing "+(j?"constant":"variable")+" "+v+" [{file}:{line},{col}]",f.start),t=!0,m}for(var h=c.self(),i=!1,j=a.length;--j>=0;){var k=a[j];if(!(k instanceof Sa)){if([k,k.body,k.alternative,k.bcatch,k.bfinally].forEach(function(a){a&&a.body&&f(a.body,c)}),j<=0)break;var l=j-1,m=a[l];if(m instanceof Sa){var n=m.definitions;if(null!=n)for(var o={},p=!1,q=!1,r={},s=n.length;--s>=0;){var u=n[s];if(null==u.value)break;var v=u.name.name;if(!v||!v.length)break;if(v in o)break;o[v]=!0;var w=h.find_variable&&h.find_variable(v);if(w&&w.references&&1===w.references.length&&"arguments"!=v){var x=w.references[0];if(x.scope.uses_eval||x.scope.uses_with)break;if(u.value.is_constant()){var y=new U(function(a){if(a===x)return g(a,y.parent(),!0)});k.transform(y)}else if(!(p|=q))if(x.scope===h){var z=new D(function(a){a instanceof wb&&e(a,z.parent())&&(r[a.name]=q=!0)});u.value.walk(z);var A=!1,B=new U(function(a){if(A)return a;var b=B.parent();return a instanceof za||a instanceof Pa||a instanceof wa||a instanceof Oa||a instanceof qa||b instanceof Ka&&a!==b.condition||b instanceof eb&&a!==b.condition||b instanceof db&&("&&"==b.operator||"||"==b.operator)&&a===b.right||b instanceof La&&a!==b.expression?(p=A=!0,a):void 0},function(a){return A?a:a===x?(A=!0,g(a,B.parent(),!1)):(p|=a.has_side_effects(c))?(A=!0,a):q&&a instanceof wb&&a.name in r?(p=!0,A=!0,a):void 0});k.transform(B)}else p|=u.value.has_side_effects(c)}else p=!0}}}}if(i)for(var C=a.length;--C>=0;)a.length>1&&a[C]instanceof na&&a.splice(C,1);return a}function g(a){function d(a){return/@ngInject/.test(a.value)}function e(a){return a.argnames.map(function(a){return b(Ab,a,{value:a.name})})}function f(a,c){return b(gb,a,{elements:c})}function g(a,c){return b(ka,a,{body:b(fb,a,{operator:"=",left:b($a,c,{expression:b(wb,c,c),property:"$inject"}),right:f(a,e(a))})})}function h(a){a&&a.args&&(a.args.forEach(function(a,b,c){var g=a.start.comments_before;a instanceof za&&g.length&&d(g[0])&&(c[b]=f(a,e(a).concat(a)))}),a.expression&&a.expression.expression&&h(a.expression.expression))}return a.reduce(function(a,b){if(a.push(b),b.body&&b.body.args)h(b.body);else{var e=b.start,f=e.comments_before;if(f&&f.length>0){var i=f.pop();d(i)&&(b instanceof Ca?a.push(g(b,b.name)):b instanceof Sa?b.definitions.forEach(function(b){b.value&&b.value instanceof za&&a.push(g(b.value,b.name))}):c.warn("Unknown statement marked with @ngInject [{file}:{line},{col}]",e))}}return a},[])}function h(a){var b=[];return a.reduce(function(a,c){return c instanceof ma?(t=!0,a.push.apply(a,h(c.body))):c instanceof na?t=!0:c instanceof ja?b.indexOf(c.value)<0?(a.push(c),b.push(c.value)):t=!0:a.push(c),a},[])}function k(a,c){function d(a){for(var b=0,c=a.length;--c>=0;){var d=a[c];if(d instanceof Ka&&d.body instanceof Fa&&++b>1)return!0}return!1}var f=c.self(),g=d(a),h=f instanceof za,j=[];a:for(var k=a.length;--k>=0;){var l=a[k];switch(!0){case h&&l instanceof Fa&&!l.value&&0==j.length:t=!0;continue a;case l instanceof Ka:if(l.body instanceof Fa){if((h&&0==j.length||j[0]instanceof Fa&&!j[0].value)&&!l.body.value&&!l.alternative){t=!0;var n=b(ka,l.condition,{body:l.condition});j.unshift(n);continue a}if(j[0]instanceof Fa&&l.body.value&&j[0].value&&!l.alternative){t=!0,l=l.clone(),l.alternative=j[0],j[0]=l.transform(c);continue a}if(g&&(0==j.length||j[0]instanceof Fa)&&l.body.value&&!l.alternative&&h){t=!0,l=l.clone(),l.alternative=j[0]||b(Fa,l,{value:b(Gb,l)}),j[0]=l.transform(c);continue a}if(!l.body.value&&h){t=!0,l=l.clone(),l.condition=l.condition.negate(c);var o=e(l.alternative).concat(j),p=m(o);l.body=b(ma,l,{body:o}),l.alternative=null,j=p.concat([l.transform(c)]);continue a}if(c.option("sequences")&&k>0&&a[k-1]instanceof Ka&&a[k-1].body instanceof Fa&&1==j.length&&h&&j[0]instanceof ka&&!l.alternative){t=!0,j.push(b(Fa,j[0],{value:b(Gb,j[0])}).transform(c)),j.unshift(l);continue a}}var q=C(l.body),r=q instanceof Ha?c.loopcontrol_target(q.label):null;if(q&&(q instanceof Fa&&!q.value&&h||q instanceof Ja&&f===i(r)||q instanceof Ia&&r instanceof ma&&f===r)){q.label&&s(q.label.thedef.references,q),t=!0;var o=e(l.body).slice(0,-1);l=l.clone(),l.condition=l.condition.negate(c),l.body=b(ma,l,{body:e(l.alternative).concat(j)}),l.alternative=b(ma,l,{body:o}),j=[l.transform(c)];continue a}var q=C(l.alternative),r=q instanceof Ha?c.loopcontrol_target(q.label):null;if(q&&(q instanceof Fa&&!q.value&&h||q instanceof Ja&&f===i(r)||q instanceof Ia&&r instanceof ma&&f===r)){q.label&&s(q.label.thedef.references,q),t=!0,l=l.clone(),l.body=b(ma,l.body,{body:e(l.body).concat(j)}),l.alternative=b(ma,l.alternative,{body:e(l.alternative).slice(0,-1)}),j=[l.transform(c)];continue a}j.unshift(l);break;default:j.unshift(l)}}return j}function l(a,b){var c=!1,d=a.length,e=b.self();return a=a.reduce(function(a,d){if(c)q(b,d,a);else{if(d instanceof Ha){var f=b.loopcontrol_target(d.label);d instanceof Ia&&f instanceof ma&&i(f)===e||d instanceof Ja&&i(f)===e?d.label&&s(d.label.thedef.references,d):a.push(d)}else a.push(d);C(d)&&(c=!0)}return a},[]),t=a.length!=d,a}function n(a,c){function d(){e=Ya.from_array(e),e&&f.push(b(ka,e,{body:e})),e=[]}if(a.length<2)return a;var e=[],f=[];return a.forEach(function(a){a instanceof ka?(o(e)>=c.sequences_limit&&d(),e.push(e.length>0?j(a):a.body)):(d(),f.push(a))}),d(),f=p(f,c),t=f.length!=a.length,f}function o(a){for(var b=0,c=0;c<a.length;++c){var d=a[c];d instanceof Ya?b+=d.len():b++}return b}function p(a,c){function d(a){e.pop();var b=f.body;return b instanceof Ya?b.add(a):b=Ya.cons(b,a),b.transform(c)}var e=[],f=null;return a.forEach(function(a){if(f)if(a instanceof ua){var c={};try{f.body.walk(new D(function(a){if(a instanceof db&&"in"==a.operator)throw c})),!a.init||a.init instanceof Sa?a.init||(a.init=j(f),e.pop()):a.init=d(a.init)}catch(a){if(a!==c)throw a}}else a instanceof Ka?a.condition=d(a.condition):a instanceof wa?a.expression=d(a.expression):a instanceof Ea&&a.value?a.value=d(a.value):a instanceof Ea?a.value=d(b(Gb,a)):a instanceof La&&(a.expression=d(a.expression));e.push(a),f=a instanceof ka?a:null}),e}function r(a,b){var c=null;return a.reduce(function(a,b){return b instanceof Sa&&c&&c.TYPE==b.TYPE?(c.definitions=c.definitions.concat(b.definitions),t=!0):b instanceof ua&&c instanceof Ta&&(!b.init||b.init.TYPE==c.TYPE)?(t=!0,a.pop(),b.init?b.init.definitions=c.definitions.concat(b.init.definitions):b.init=c,a.push(b),c=b):(c=b,a.push(b)),a},[])}var t,u=10;do t=!1,c.option("angular")&&(a=g(a)),a=h(a),c.option("dead_code")&&(a=l(a,c)),c.option("if_return")&&(a=k(a,c)),c.sequences_limit>0&&(a=n(a,c)),c.option("join_vars")&&(a=r(a,c)),c.option("collapse_vars")&&(a=f(a,c));while(t&&u-- >0);return a}function m(a){for(var b=[],c=a.length-1;c>=0;--c){var d=a[c];d instanceof Ca&&(a.splice(c,1),b.unshift(d))}return b}function q(a,b,c){b instanceof Ca||a.warn("Dropping unreachable code [{file}:{line},{col}]",b.start),b.walk(new D(function(b){return b instanceof Sa?(a.warn("Declarations in unreachable code! [{file}:{line},{col}]",b.start),b.remove_initializers(),c.push(b),!0):b instanceof Ca?(c.push(b),!0):b instanceof xa||void 0}))}function u(a,b){return b instanceof ab&&("++"===b.operator||"--"===b.operator)||b instanceof fb&&b.left===a}function v(a,b){return a.print_to_string().length>b.print_to_string().length?b:a}function B(a,c){return v(b(ka,a,{body:a}),b(ka,c,{body:c})).body}function C(a){return a&&a.aborts()}function E(a,c){function d(d){d=e(d),a.body instanceof ma?(a.body=a.body.clone(),a.body.body=d.concat(a.body.body.slice(1)),a.body=a.body.transform(c)):a.body=b(ma,a.body,{body:d}).transform(c),E(a,c)}var f=a.body instanceof ma?a.body.body[0]:a.body;f instanceof Ka&&(f.body instanceof Ia&&c.loopcontrol_target(f.body.label)===a?(a.condition?a.condition=b(db,a.condition,{left:a.condition,operator:"&&",right:f.condition.negate(c)}):a.condition=f.condition.negate(c),d(f.alternative)):f.alternative instanceof Ia&&c.loopcontrol_target(f.alternative.label)===a&&(a.condition?a.condition=b(db,a.condition,{left:a.condition,operator:"&&",right:f.condition}):a.condition=f.condition,d(f.body)))}function F(a,b){var c=b.option("pure_getters");b.options.pure_getters=!1;var d=a.has_side_effects(b);return b.options.pure_getters=c,d}function G(a,c){return c.option("booleans")&&c.in_boolean_context()&&!a.has_side_effects(c)?b(Lb,a):a}a(ga,function(a,b){return a}),ga.DEFMETHOD("equivalent_to",function(a){return this.print_to_string()==a.print_to_string()}),ga.DEFMETHOD("reset_opt_flags",function(a,c){function d(a){a.modified=!1,a.references=[],a.should_replace=void 0,g&&a.init&&(a.init._evaluated=void 0)}function e(a,b){var c=h.parent(b);return!!(u(a,c)||c instanceof Wa&&c.expression===a)||(c instanceof Za&&c.expression===a?e(c,b+1):void 0)}var f=c&&a.option("reduce_vars"),g=a.option("unsafe"),h=new D(function(a){if(f){if(a instanceof ya&&a.globals.each(d),a instanceof xa&&a.variables.each(d),a instanceof wb){var c=a.definition();c.references.push(a),!c.modified&&(c.orig.length>1||e(a,0))&&(c.modified=!0)}a instanceof Wa&&a.expression instanceof Ba&&a.expression.argnames.forEach(function(c,d){c.definition().init=a.args[d]||b(Gb,a)})}a instanceof ja||a instanceof zb||(a._squeezed=!1,a._optimized=!1)});this.walk(h)});var H=w("! ~ + - void typeof");!function(a){var b=["!","delete"],c=["in","instanceof","==","!=","===","!==","<","<=",">=",">"];a(ga,o),a(bb,function(){return g(this.operator,b)}),a(db,function(){return g(this.operator,c)||("&&"==this.operator||"||"==this.operator)&&this.left.is_boolean()&&this.right.is_boolean()}),a(eb,function(){return this.consequent.is_boolean()&&this.alternative.is_boolean()}),a(fb,function(){return"="==this.operator&&this.right.is_boolean()}),a(Ya,function(){return this.cdr.is_boolean()}),a(Lb,p),a(Kb,p)}(function(a,b){a.DEFMETHOD("is_boolean",b)}),function(a){a(ga,o),a(Ab,p),a(bb,function(){return"typeof"==this.operator}),a(db,function(a){return"+"==this.operator&&(this.left.is_string(a)||this.right.is_string(a))}),a(fb,function(a){return("="==this.operator||"+="==this.operator)&&this.right.is_string(a)}),a(Ya,function(a){return this.cdr.is_string(a)}),a(eb,function(a){return this.consequent.is_string(a)&&this.alternative.is_string(a)}),a(Wa,function(a){return a.option("unsafe")&&this.expression instanceof wb&&"String"==this.expression.name&&this.expression.undeclared()})}(function(a,b){a.DEFMETHOD("is_string",b)}),function(a){function d(a,e,f){if(e instanceof ga)return b(e.CTOR,f,e);if(Array.isArray(e))return b(gb,f,{elements:e.map(function(b){return d(a,b,f)})});if(e&&"object"==typeof e){var g=[];for(var h in e)g.push(b(jb,f,{key:h,value:d(a,e[h],f)}));return b(hb,f,{properties:g})}return c(a,e,f)}ga.DEFMETHOD("resolve_defines",function(a){if(a.option("global_defs")){var b=this._find_defs(a,"");if(b){var c,d=this,e=0;do c=d,d=a.parent(e++);while(d instanceof Za&&d.expression===c);if(!u(c,d))return b;a.warn("global_defs "+this.print_to_string()+" redefined [{file}:{line},{col}]",this.start)}}}),a(ga,n),a($a,function(a,b){return this.expression._find_defs(a,b+"."+this.property)}),a(wb,function(a,b){if(this.global()){var c,e=a.option("global_defs");if(e&&z(e,c=this.name+b)){var f=d(a,e[c],this),g=a.find_parent(ya);return f.walk(new D(function(a){a instanceof wb&&(a.scope=g,a.thedef=g.def_global(a))})),f}}})}(function(a,b){a.DEFMETHOD("_find_defs",b)}),function(a){function b(a,b){if(!b)throw new Error("Compressor must be passed");return a._eval(b)}ga.DEFMETHOD("evaluate",function(b){if(!b.option("evaluate"))return[this];var d;try{d=this._eval(b)}catch(b){if(b!==a)throw b;return[this]}var e;try{e=c(b,d,this)}catch(a){return[this]}return[v(e,this),d]});var d=w("! ~ - +");ga.DEFMETHOD("is_constant",function(){return this instanceof zb?!(this instanceof Cb):this instanceof bb&&this.expression instanceof zb&&d(this.operator)}),ga.DEFMETHOD("constant_value",function(a){if(this instanceof zb&&!(this instanceof Cb))return this.value;if(this instanceof bb&&this.expression instanceof zb)switch(this.operator){case"!":return!this.expression.value;case"~":return~this.expression.value;case"-":return-this.expression.value;case"+":return+this.expression.value;default:throw new Error(r("Cannot evaluate unary expression {value}",{value:this.print_to_string()}))}var b=this.evaluate(a);if(b.length>1)return b[1];throw new Error(r("Cannot evaluate constant [{file}:{line},{col}]",this.start))}),a(ha,function(){throw new Error(r("Cannot evaluate a statement [{file}:{line},{col}]",this.start))}),a(Ba,function(){throw a}),a(ga,function(){throw a}),a(zb,function(){return this.getValue()}),a(gb,function(c){if(c.option("unsafe"))return this.elements.map(function(a){return b(a,c)});throw a}),a(hb,function(c){if(c.option("unsafe")){for(var d={},e=0,f=this.properties.length;e<f;e++){var g=this.properties[e],h=g.key;if(h instanceof ga&&(h=b(h,c)),"function"==typeof Object.prototype[h])throw a;d[h]=b(g.value,c)}return d}throw a}),a(bb,function(c){var d=this.expression;switch(this.operator){case"!":return!b(d,c);case"typeof":if(d instanceof Ba)return"function";if(d=b(d,c),d instanceof RegExp)throw a;return typeof d;case"void":return void b(d,c);case"~":return~b(d,c);case"-":return-b(d,c);case"+":return+b(d,c)}throw a}),a(db,function(c){var d,e=this.left,f=this.right;switch(this.operator){case"&&":d=b(e,c)&&b(f,c);break;case"||":d=b(e,c)||b(f,c);break;case"|":d=b(e,c)|b(f,c);break;case"&":d=b(e,c)&b(f,c);break;case"^":d=b(e,c)^b(f,c);break;case"+":d=b(e,c)+b(f,c);break;case"*":d=b(e,c)*b(f,c);break;case"/":d=b(e,c)/b(f,c);break;case"%":d=b(e,c)%b(f,c);break;case"-":d=b(e,c)-b(f,c);break;case"<<":d=b(e,c)<<b(f,c);break;case">>":d=b(e,c)>>b(f,c);break;case">>>":d=b(e,c)>>>b(f,c);break;case"==":d=b(e,c)==b(f,c);break;case"===":d=b(e,c)===b(f,c);break;case"!=":d=b(e,c)!=b(f,c);break;case"!==":d=b(e,c)!==b(f,c);break;case"<":d=b(e,c)<b(f,c);break;case"<=":d=b(e,c)<=b(f,c);break;case">":d=b(e,c)>b(f,c);break;case">=":d=b(e,c)>=b(f,c);break;default:throw a}if(isNaN(d)&&c.find_parent(wa))throw a;return d}),a(eb,function(a){return b(this.condition,a)?b(this.consequent,a):b(this.alternative,a)}),a(wb,function(c){if(this._evaluating)throw a;this._evaluating=!0;try{var d=this.definition();if(c.option("reduce_vars")&&!d.modified&&d.init)return c.option("unsafe")?(void 0===d.init._evaluated&&(d.init._evaluated=b(d.init,c)),d.init._evaluated):b(d.init,c)}finally{this._evaluating=!1}throw a}),a(Za,function(c){if(c.option("unsafe")){var d=this.property;d instanceof ga&&(d=b(d,c));var e=b(this.expression,c);if(e&&z(e,d))return e[d]}throw a})}(function(a,b){a.DEFMETHOD("_eval",b)}),function(a){function c(a){return b(bb,a,{operator:"!",expression:a})}function d(a,d,e){var f=c(a);if(e){var g=b(ka,d,{body:d});return v(f,g)===g?d:f}return v(f,d)}a(ga,function(){return c(this)}),a(ha,function(){throw new Error("Cannot negate a statement")}),a(Ba,function(){return c(this)}),a(bb,function(){return"!"==this.operator?this.expression:c(this)}),a(Ya,function(a){var b=this.clone();return b.cdr=b.cdr.negate(a),b}),a(eb,function(a,b){var c=this.clone();return c.consequent=c.consequent.negate(a),c.alternative=c.alternative.negate(a),d(this,c,b)}),a(db,function(a,b){var e=this.clone(),f=this.operator;if(a.option("unsafe_comps"))switch(f){case"<=":return e.operator=">",e;case"<":return e.operator=">=",e;case">=":return e.operator="<",e;case">":return e.operator="<=",e}switch(f){case"==":return e.operator="!=",e;case"!=":return e.operator="==",e;case"===":
-return e.operator="!==",e;case"!==":return e.operator="===",e;case"&&":return e.operator="||",e.left=e.left.negate(a,b),e.right=e.right.negate(a),d(this,e,b);case"||":return e.operator="&&",e.left=e.left.negate(a,b),e.right=e.right.negate(a),d(this,e,b)}return c(this)})}(function(a,b){a.DEFMETHOD("negate",function(a,c){return b.call(this,a,c)})}),Wa.DEFMETHOD("has_pure_annotation",function(a){if(!a.option("side_effects"))return!1;if(void 0!==this.pure)return this.pure;var b,c,d=!1;return this.start&&(b=this.start.comments_before)&&b.length&&/[@#]__PURE__/.test((c=b[b.length-1]).value)&&(a.warn("Dropping __PURE__ call [{file}:{line},{col}]",this.start),c.value=c.value.replace(/[@#]__PURE__/g," "),d=!0),this.pure=d}),function(a){a(ga,p),a(na,o),a(zb,o),a(yb,o),a(Wa,function(a){if(!this.has_pure_annotation(a)&&a.pure_funcs(this))return!0;for(var b=this.args.length;--b>=0;)if(this.args[b].has_side_effects(a))return!0;return!1}),a(la,function(a){for(var b=this.body.length;--b>=0;)if(this.body[b].has_side_effects(a))return!0;return!1}),a(ka,function(a){return this.body.has_side_effects(a)}),a(Ca,p),a(Ba,o),a(db,function(a){return this.left.has_side_effects(a)||this.right.has_side_effects(a)}),a(fb,p),a(eb,function(a){return this.condition.has_side_effects(a)||this.consequent.has_side_effects(a)||this.alternative.has_side_effects(a)}),a(ab,function(a){return"delete"==this.operator||"++"==this.operator||"--"==this.operator||this.expression.has_side_effects(a)}),a(wb,function(a){return this.global()&&this.undeclared()}),a(hb,function(a){for(var b=this.properties.length;--b>=0;)if(this.properties[b].has_side_effects(a))return!0;return!1}),a(ib,function(a){return this.value.has_side_effects(a)}),a(gb,function(a){for(var b=this.elements.length;--b>=0;)if(this.elements[b].has_side_effects(a))return!0;return!1}),a($a,function(a){return!a.option("pure_getters")||this.expression.has_side_effects(a)}),a(_a,function(a){return!a.option("pure_getters")||(this.expression.has_side_effects(a)||this.property.has_side_effects(a))}),a(Za,function(a){return!a.option("pure_getters")}),a(Ya,function(a){return this.car.has_side_effects(a)||this.cdr.has_side_effects(a)})}(function(a,b){a.DEFMETHOD("has_side_effects",b)}),function(a){function b(){var a=this.body.length;return a>0&&C(this.body[a-1])}a(ha,function(){return null}),a(Da,function(){return this}),a(ma,b),a(Ma,b),a(Ka,function(){return this.alternative&&C(this.body)&&C(this.alternative)&&this})}(function(a,b){a.DEFMETHOD("aborts",b)}),a(ja,function(a,c){return"up"===c.has_directive(a.value)?b(na,a):a}),a(ia,function(a,c){return c.option("drop_debugger")?b(na,a):a}),a(pa,function(a,c){return a.body instanceof Ia&&c.loopcontrol_target(a.body.label)===a.body?b(na,a):0==a.label.references.length?a.body:a}),a(la,function(a,b){return a.body=l(a.body,b),a}),a(ma,function(a,c){switch(a.body=l(a.body,c),a.body.length){case 1:return a.body[0];case 0:return b(na,a)}return a}),xa.DEFMETHOD("drop_unused",function(a){var c=this;if(a.has_directive("use asm"))return c;var d=a.option("toplevel");if(a.option("unused")&&(!(c instanceof ya)||d)&&!c.uses_eval&&!c.uses_with){var e=!/keep_assign/.test(a.option("unused")),f=/funcs/.test(d),g=/vars/.test(d);c instanceof ya&&1!=d||(f=g=!0);var h=[],i=Object.create(null);c instanceof ya&&a.top_retain&&c.variables.each(function(b){!a.top_retain(b)||b.id in i||(i[b.id]=!0,h.push(b))});var j=new y,k=this,l=new D(function(b,d){if(b!==c){if(b instanceof Ca){if(!f&&k===c){var m=b.name.definition();m.id in i||(i[m.id]=!0,h.push(m))}return j.add(b.name.name,b),!0}if(b instanceof Sa&&k===c)return b.definitions.forEach(function(b){if(!g){var c=b.name.definition();c.id in i||(i[c.id]=!0,h.push(c))}b.value&&(j.add(b.name.name,b.value),b.value.has_side_effects(a)&&b.value.walk(l))}),!0;if(e&&b instanceof fb&&"="==b.operator&&b.left instanceof wb&&k===c)return b.right.walk(l),!0;if(b instanceof wb){var m=b.definition();return m.id in i||(i[m.id]=!0,h.push(m)),!0}if(b instanceof xa){var n=k;return k=b,d(),k=n,!0}}});c.walk(l);for(var m=0;m<h.length;++m)h[m].orig.forEach(function(a){var b=j.get(a.name);b&&b.forEach(function(a){var b=new D(function(a){if(a instanceof wb){var b=a.definition();b.id in i||(i[b.id]=!0,h.push(b))}});a.walk(b)})});var n=new U(function(d,h,j){if(!(d instanceof Ba&&d.name)||a.option("keep_fnames")||d.name.definition().id in i||(d.name=null),d instanceof za&&!(d instanceof Aa)&&!a.option("keep_fargs"))for(var k=d.argnames,l=k.length;--l>=0;){var m=k[l];if(m.definition().id in i)break;k.pop(),a.warn("Dropping unused function argument {name} [{file}:{line},{col}]",{name:m.name,file:m.start.file,line:m.start.line,col:m.start.col})}if(f&&d instanceof Ca&&d!==c)return d.name.definition().id in i?d:(a.warn("Dropping unused function {name} [{file}:{line},{col}]",{name:d.name.name,file:d.name.start.file,line:d.name.start.line,col:d.name.start.col}),b(na,d));if(g&&d instanceof Sa&&!(n.parent()instanceof va)){var o=d.definitions.filter(function(b){if(b.name.definition().id in i)return!0;var c={name:b.name.name,file:b.name.start.file,line:b.name.start.line,col:b.name.start.col};return b.value&&b.value.has_side_effects(a)?(b._unused_side_effects=!0,a.warn("Side effects in initialization of unused variable {name} [{file}:{line},{col}]",c),!0):(a.warn("Dropping unused variable {name} [{file}:{line},{col}]",c),!1)});o=t(o,function(a,b){return!a.value&&b.value?-1:!b.value&&a.value?1:0});for(var p=[],l=0;l<o.length;){var q=o[l];q._unused_side_effects?(p.push(q.value),o.splice(l,1)):(p.length>0&&(p.push(q.value),q.value=Ya.from_array(p),p=[]),++l)}return p=p.length>0?b(ma,d,{body:[b(ka,d,{body:Ya.from_array(p)})]}):null,0!=o.length||p?0==o.length?j?ea.splice(p.body):p:(d.definitions=o,p?(p.body.unshift(d),j?ea.splice(p.body):p):d):b(na,d)}if(g&&e&&d instanceof fb&&"="==d.operator&&d.left instanceof wb){var o=d.left.definition();if(!(o.id in i)&&c.variables.get(o.name)===o)return d.right}if(d instanceof ua&&(h(d,this),d.init instanceof ma)){var r=d.init.body.slice(0,-1);return d.init=d.init.body.slice(-1)[0].body,r.push(d),j?ea.splice(r):b(ma,d,{body:r})}return d instanceof xa&&d!==c?d:void 0});c.transform(n)}}),xa.DEFMETHOD("hoist_declarations",function(a){var c=this;if(a.has_directive("use asm"))return c;var d=a.option("hoist_funs"),e=a.option("hoist_vars");if(d||e){var f=[],g=[],i=new y,j=0,k=0;c.walk(new D(function(a){return a instanceof xa&&a!==c||(a instanceof Ta?(++k,!0):void 0)})),e=e&&k>1;var l=new U(function(a){if(a!==c){if(a instanceof ja)return f.push(a),b(na,a);if(a instanceof Ca&&d)return g.push(a),b(na,a);if(a instanceof Ta&&e){a.definitions.forEach(function(a){i.set(a.name.name,a),++j});var h=a.to_assignments(),k=l.parent();if(k instanceof va&&k.init===a){if(null==h){var m=a.definitions[0].name;return b(wb,m,m)}return h}return k instanceof ua&&k.init===a?h:h?b(ka,a,{body:h}):b(na,a)}if(a instanceof xa)return a}});if(c=c.transform(l),j>0){var m=[];if(i.each(function(a,b){c instanceof za&&h(function(b){return b.name==a.name.name},c.argnames)?i.del(b):(a=a.clone(),a.value=null,m.push(a),i.set(b,a))}),m.length>0){for(var n=0;n<c.body.length;){if(c.body[n]instanceof ka){var o,p,q=c.body[n].body;if(q instanceof fb&&"="==q.operator&&(o=q.left)instanceof mb&&i.has(o.name)){var r=i.get(o.name);if(r.value)break;r.value=q.right,s(m,r),m.push(r),c.body.splice(n,1);continue}if(q instanceof Ya&&(p=q.car)instanceof fb&&"="==p.operator&&(o=p.left)instanceof mb&&i.has(o.name)){var r=i.get(o.name);if(r.value)break;r.value=p.right,s(m,r),m.push(r),c.body[n].body=q.cdr;continue}}if(c.body[n]instanceof na)c.body.splice(n,1);else{if(!(c.body[n]instanceof ma))break;var t=[n,1].concat(c.body[n].body);c.body.splice.apply(c.body,t)}}m=b(Ta,c,{definitions:m}),g.push(m)}}c.body=f.concat(g,c.body)}return c}),function(a){function c(){return this}function d(){return null}function e(a,b,c){for(var d=[],e=!1,f=0,g=a.length;f<g;f++){var h=a[f].drop_side_effect_free(b,c);e|=h!==a[f],h&&(d.push(h),c=!1)}return e?d.length?d:null:a}a(ga,c),a(zb,d),a(yb,d),a(Wa,function(a,b){if(!this.has_pure_annotation(a)&&a.pure_funcs(this))return this;var c=e(this.args,a,b);return c&&Ya.from_array(c)}),a(Ba,d),a(db,function(a,c){var d=this.right.drop_side_effect_free(a);if(!d)return this.left.drop_side_effect_free(a,c);switch(this.operator){case"&&":case"||":var e=this.clone();return e.right=d,e;default:var f=this.left.drop_side_effect_free(a,c);return f?b(Ya,this,{car:f,cdr:d}):this.right.drop_side_effect_free(a,c)}}),a(fb,c),a(eb,function(a){var c=this.consequent.drop_side_effect_free(a),d=this.alternative.drop_side_effect_free(a);if(c===this.consequent&&d===this.alternative)return this;if(!c)return d?b(db,this,{operator:"||",left:this.condition,right:d}):this.condition.drop_side_effect_free(a);if(!d)return b(db,this,{operator:"&&",left:this.condition,right:c});var e=this.clone();return e.consequent=c,e.alternative=d,e}),a(ab,function(a,b){switch(this.operator){case"delete":case"++":case"--":return this;case"typeof":if(this.expression instanceof wb)return null;default:return b&&k(this.expression)?this:this.expression.drop_side_effect_free(a,b)}}),a(wb,function(){return this.undeclared()?this:null}),a(hb,function(a,b){var c=e(this.properties,a,b);return c&&Ya.from_array(c)}),a(ib,function(a,b){return this.value.drop_side_effect_free(a,b)}),a(gb,function(a,b){var c=e(this.elements,a,b);return c&&Ya.from_array(c)}),a($a,function(a,b){return a.option("pure_getters")?this.expression.drop_side_effect_free(a,b):this}),a(_a,function(a,c){if(!a.option("pure_getters"))return this;var d=this.expression.drop_side_effect_free(a,c);if(!d)return this.property.drop_side_effect_free(a,c);var e=this.property.drop_side_effect_free(a);return e?b(Ya,this,{car:d,cdr:e}):d}),a(Ya,function(a){var c=this.cdr.drop_side_effect_free(a);return c===this.cdr?this:c?b(Ya,this,{car:this.car,cdr:c}):this.car})}(function(a,b){a.DEFMETHOD("drop_side_effect_free",b)}),a(ka,function(a,c){if(c.option("side_effects")){var d=a.body;if(!d.has_side_effects(c))return c.warn("Dropping side-effect-free statement [{file}:{line},{col}]",a.start),b(na,a);var e=d.drop_side_effect_free(c,!0);if(!e)return c.warn("Dropping side-effect-free statement [{file}:{line},{col}]",a.start),b(na,a);if(e!==d)return b(ka,a,{body:e})}return a}),a(ra,function(a,c){var d=a.condition.evaluate(c);if(a.condition=d[0],!c.option("loops"))return a;if(d.length>1){if(d[1])return b(ua,a,{body:a.body});if(!(a instanceof ta))return a.body;if(c.option("dead_code")){var e=[];return q(c,a.body,e),b(ma,a,{body:e})}}return a instanceof ta?b(ua,a,a).transform(c):a}),a(ua,function(a,c){var d=a.condition;if(d&&(d=d.evaluate(c),a.condition=d[0]),!c.option("loops"))return a;if(d&&d.length>1&&!d[1]&&c.option("dead_code")){var e=[];return a.init instanceof ha?e.push(a.init):a.init&&e.push(b(ka,a.init,{body:a.init})),q(c,a.body,e),b(ma,a,{body:e})}return E(a,c),a}),a(Ka,function(a,c){if(f(a.alternative)&&(a.alternative=null),!c.option("conditionals"))return a;var d=a.condition.evaluate(c);if(a.condition=d[0],d.length>1)if(d[1]){if(c.warn("Condition always true [{file}:{line},{col}]",a.condition.start),c.option("dead_code")){var e=[];return a.alternative&&q(c,a.alternative,e),e.push(a.body),b(ma,a,{body:e}).transform(c)}}else if(c.warn("Condition always false [{file}:{line},{col}]",a.condition.start),c.option("dead_code")){var e=[];return q(c,a.body,e),a.alternative&&e.push(a.alternative),b(ma,a,{body:e}).transform(c)}var g=a.condition.negate(c),h=a.condition.print_to_string().length,i=g.print_to_string().length,k=i<h;if(a.alternative&&k){k=!1,a.condition=g;var l=a.body;a.body=a.alternative||b(na),a.alternative=l}if(f(a.body)&&f(a.alternative))return b(ka,a.condition,{body:a.condition}).transform(c);if(a.body instanceof ka&&a.alternative instanceof ka)return b(ka,a,{body:b(eb,a,{condition:a.condition,consequent:j(a.body),alternative:j(a.alternative)})}).transform(c);if(f(a.alternative)&&a.body instanceof ka)return h===i&&!k&&a.condition instanceof db&&"||"==a.condition.operator&&(k=!0),k?b(ka,a,{body:b(db,a,{operator:"||",left:g,right:j(a.body)})}).transform(c):b(ka,a,{body:b(db,a,{operator:"&&",left:a.condition,right:j(a.body)})}).transform(c);if(a.body instanceof na&&a.alternative&&a.alternative instanceof ka)return b(ka,a,{body:b(db,a,{operator:"||",left:a.condition,right:j(a.alternative)})}).transform(c);if(a.body instanceof Ea&&a.alternative instanceof Ea&&a.body.TYPE==a.alternative.TYPE)return b(a.body.CTOR,a,{value:b(eb,a,{condition:a.condition,consequent:a.body.value||b(Gb,a.body).optimize(c),alternative:a.alternative.value||b(Gb,a.alternative).optimize(c)})}).transform(c);if(a.body instanceof Ka&&!a.body.alternative&&!a.alternative&&(a.condition=b(db,a.condition,{operator:"&&",left:a.condition,right:a.body.condition}).transform(c),a.body=a.body.body),C(a.body)&&a.alternative){var m=a.alternative;return a.alternative=null,b(ma,a,{body:[a,m]}).transform(c)}if(C(a.alternative)){var n=a.body;return a.body=a.alternative,a.condition=k?g:a.condition.negate(c),a.alternative=null,b(ma,a,{body:[a,n]}).transform(c)}return a}),a(La,function(a,c){if(0==a.body.length&&c.option("conditionals"))return b(ka,a,{body:a.expression}).transform(c);for(;;){var d=a.body[a.body.length-1];if(d){var e=d.body[d.body.length-1];if(e instanceof Ia&&i(c.loopcontrol_target(e.label))===a&&d.body.pop(),d instanceof Na&&0==d.body.length){a.body.pop();continue}}break}var f=a.expression.evaluate(c);a:if(2==f.length)try{if(a.expression=f[0],!c.option("dead_code"))break a;var g=f[1],h=!1,j=!1,k=!1,l=!1,m=!1,n=new U(function(d,e,f){if(d instanceof za||d instanceof ka)return d;if(d instanceof La&&d===a)return d=d.clone(),e(d,this),m?d:b(ma,d,{body:d.body.reduce(function(a,b){return a.concat(b.body)},[])}).transform(c);if(d instanceof Ka||d instanceof Pa){var i=h;return h=!j,e(d,this),h=i,d}if(d instanceof oa||d instanceof La){var i=j;return j=!0,e(d,this),j=i,d}if(d instanceof Ia&&this.loopcontrol_target(d.label)===a)return h?(m=!0,d):j?d:(l=!0,f?ea.skip:b(na,d));if(d instanceof Ma&&this.parent()===a){if(l)return ea.skip;if(d instanceof Oa){var n=d.expression.evaluate(c);if(n.length<2)throw a;return n[1]===g||k?(k=!0,C(d)&&(l=!0),e(d,this),d):ea.skip}return e(d,this),d}});n.stack=c.stack.slice(),a=a.transform(n)}catch(b){if(b!==a)throw b}return a}),a(Oa,function(a,b){return a.body=l(a.body,b),a}),a(Pa,function(a,b){return a.body=l(a.body,b),a}),Sa.DEFMETHOD("remove_initializers",function(){this.definitions.forEach(function(a){a.value=null})}),Sa.DEFMETHOD("to_assignments",function(){var a=this.definitions.reduce(function(a,c){if(c.value){var d=b(wb,c.name,c.name);a.push(b(fb,c,{operator:"=",left:d,right:c.value}))}return a},[]);return 0==a.length?null:Ya.from_array(a)}),a(Sa,function(a,c){return 0==a.definitions.length?b(na,a):a}),a(Wa,function(a,c){if(c.option("unsafe")){var d=a.expression;if(d instanceof wb&&d.undeclared())switch(d.name){case"Array":if(1!=a.args.length)return b(gb,a,{elements:a.args}).transform(c);break;case"Object":if(0==a.args.length)return b(hb,a,{properties:[]});break;case"String":if(0==a.args.length)return b(Ab,a,{value:""});if(a.args.length<=1)return b(db,a,{left:a.args[0],operator:"+",right:b(Ab,a,{value:""})}).transform(c);break;case"Number":if(0==a.args.length)return b(Bb,a,{value:0});if(1==a.args.length)return b(bb,a,{expression:a.args[0],operator:"+"}).transform(c);case"Boolean":if(0==a.args.length)return b(Kb,a);if(1==a.args.length)return b(bb,a,{expression:b(bb,null,{expression:a.args[0],operator:"!"}),operator:"!"}).transform(c);break;case"Function":if(0==a.args.length)return b(Ba,a,{argnames:[],body:[]});if(x(a.args,function(a){return a instanceof Ab}))try{var e="(function("+a.args.slice(0,-1).map(function(a){return a.value}).join(",")+"){"+a.args[a.args.length-1].value+"})()",f=T(e);f.figure_out_scope({screw_ie8:c.option("screw_ie8")});var g=new Z(c.options);f=f.transform(g),f.figure_out_scope({screw_ie8:c.option("screw_ie8")}),f.mangle_names();var h;try{f.walk(new D(function(a){if(a instanceof za)throw h=a,f}))}catch(a){if(a!==f)throw a}if(!h)return a;var i=h.argnames.map(function(c,d){return b(Ab,a.args[d],{value:c.print_to_string()})}),e=Y();return ma.prototype._codegen.call(h,h,e),e=e.toString().replace(/^\{|\}$/g,""),i.push(b(Ab,a.args[a.args.length-1],{value:e})),a.args=i,a}catch(b){if(!(b instanceof P))throw console.log(b),b;c.warn("Error parsing code passed to new Function [{file}:{line},{col}]",a.args[a.args.length-1].start),c.warn(b.toString())}}else{if(d instanceof $a&&"toString"==d.property&&0==a.args.length)return b(db,a,{left:b(Ab,a,{value:""}),operator:"+",right:d.expression}).transform(c);if(d instanceof $a&&d.expression instanceof gb&&"join"==d.property)a:{var j;if(a.args.length>0){if(j=a.args[0].evaluate(c),j.length<2)break a;j=j[1]}var l=[],m=[];if(d.expression.elements.forEach(function(d){d=d.evaluate(c),d.length>1?m.push(d[1]):(m.length>0&&(l.push(b(Ab,a,{value:m.join(j)})),m.length=0),l.push(d[0]))}),m.length>0&&l.push(b(Ab,a,{value:m.join(j)})),0==l.length)return b(Ab,a,{value:""});if(1==l.length)return l[0].is_string(c)?l[0]:b(db,l[0],{operator:"+",left:b(Ab,a,{value:""}),right:l[0]});if(""==j){var n;return n=l[0].is_string(c)||l[1].is_string(c)?l.shift():b(Ab,a,{value:""}),l.reduce(function(a,c){return b(db,c,{operator:"+",left:a,right:c})},n).transform(c)}var o=a.clone();return o.expression=o.expression.clone(),o.expression.expression=o.expression.expression.clone(),o.expression.expression.elements=l,v(a,o)}}}if(c.option("side_effects")&&a.expression instanceof Ba&&0==a.args.length&&!la.prototype.has_side_effects.call(a.expression,c))return b(Gb,a).transform(c);if(c.option("drop_console")&&a.expression instanceof Za){for(var p=a.expression.expression;p.expression;)p=p.expression;if(p instanceof wb&&"console"==p.name&&p.undeclared())return b(Gb,a).transform(c)}return c.option("negate_iife")&&c.parent()instanceof ka&&k(a)?a.negate(c,!0):a}),a(Xa,function(a,c){if(c.option("unsafe")){var d=a.expression;if(d instanceof wb&&d.undeclared())switch(d.name){case"Object":case"RegExp":case"Function":case"Error":case"Array":return b(Wa,a,a).transform(c)}}return a}),a(Ya,function(a,c){if(!c.option("side_effects"))return a;if(a.car=a.car.drop_side_effect_free(c,A(c)),!a.car)return d(c.parent(),a,a.cdr);if(c.option("cascade")){if(a.car instanceof fb&&!a.car.left.has_side_effects(c)){if(a.car.left.equivalent_to(a.cdr))return a.car;if(a.cdr instanceof Wa&&a.cdr.expression.equivalent_to(a.car.left))return a.cdr.expression=a.car,a.cdr}if(!a.car.has_side_effects(c)&&!a.cdr.has_side_effects(c)&&a.car.equivalent_to(a.cdr))return a.car}return a.cdr instanceof bb&&"void"==a.cdr.operator&&!a.cdr.expression.has_side_effects(c)?(a.cdr.expression=a.car,a.cdr):a.cdr instanceof Gb?b(bb,a,{operator:"void",expression:a.car}):a}),ab.DEFMETHOD("lift_sequences",function(a){if(a.option("sequences")&&this.expression instanceof Ya){var b=this.expression,c=b.to_array();return this.expression=c.pop(),c.push(this),b=Ya.from_array(c).transform(a)}return this}),a(cb,function(a,b){return a.lift_sequences(b)}),a(bb,function(a,c){a=a.lift_sequences(c);var d=a.expression;if(c.option("booleans")&&c.in_boolean_context())switch(a.operator){case"!":if(d instanceof bb&&"!"==d.operator)return d.expression;if(d instanceof db){var e=A(c);a=(e?B:v)(a,d.negate(c,e))}break;case"typeof":return c.warn("Boolean expression always true [{file}:{line},{col}]",a.start),a.expression.has_side_effects(c)?b(Ya,a,{car:a.expression,cdr:b(Lb,a)}):b(Lb,a)}return a.evaluate(c)[0]}),db.DEFMETHOD("lift_sequences",function(a){if(a.option("sequences")){if(this.left instanceof Ya){var b=this.left,c=b.to_array();return this.left=c.pop(),c.push(this),b=Ya.from_array(c).transform(a)}if(this.right instanceof Ya&&this instanceof fb&&!F(this.left,a)){var b=this.right,c=b.to_array();return this.right=c.pop(),c.push(this),b=Ya.from_array(c).transform(a)}}return this});var I=w("== === != !== * & | ^");a(db,function(a,c){function e(b,d){if(d||!a.left.has_side_effects(c)&&!a.right.has_side_effects(c)){b&&(a.operator=b);var e=a.left;a.left=a.right,a.right=e}}var f=a.left.evaluate(c),g=a.right.evaluate(c);if(f.length>1&&f[0].is_constant()!==a.left.is_constant()||g.length>1&&g[0].is_constant()!==a.right.is_constant())return b(db,a,{operator:a.operator,left:f[0],right:g[0]}).optimize(c);if(I(a.operator)&&(a.right instanceof zb&&!(a.left instanceof zb)&&(a.left instanceof db&&cc[a.left.operator]>=cc[a.operator]||e(null,!0)),/^[!=]==?$/.test(a.operator))){if(a.left instanceof wb&&a.right instanceof eb){if(a.right.consequent instanceof wb&&a.right.consequent.definition()===a.left.definition()){if(/^==/.test(a.operator))return a.right.condition;if(/^!=/.test(a.operator))return a.right.condition.negate(c)}if(a.right.alternative instanceof wb&&a.right.alternative.definition()===a.left.definition()){if(/^==/.test(a.operator))return a.right.condition.negate(c);if(/^!=/.test(a.operator))return a.right.condition}}if(a.right instanceof wb&&a.left instanceof eb){if(a.left.consequent instanceof wb&&a.left.consequent.definition()===a.right.definition()){if(/^==/.test(a.operator))return a.left.condition;if(/^!=/.test(a.operator))return a.left.condition.negate(c)}if(a.left.alternative instanceof wb&&a.left.alternative.definition()===a.right.definition()){if(/^==/.test(a.operator))return a.left.condition.negate(c);if(/^!=/.test(a.operator))return a.left.condition}}}if(a=a.lift_sequences(c),c.option("comparisons"))switch(a.operator){case"===":case"!==":(a.left.is_string(c)&&a.right.is_string(c)||a.left.is_boolean()&&a.right.is_boolean())&&(a.operator=a.operator.substr(0,2));case"==":case"!=":if(a.left instanceof Ab&&"undefined"==a.left.value&&a.right instanceof bb&&"typeof"==a.right.operator){var h=a.right.expression;(h instanceof wb?h.undeclared():h instanceof Za&&!c.option("screw_ie8"))||(a.right=h,a.left=b(Gb,a.left).optimize(c),2==a.operator.length&&(a.operator+="="))}}if(c.option("booleans")&&c.in_boolean_context())switch(a.operator){case"&&":var i=a.left.evaluate(c),j=a.right.evaluate(c);if(i.length>1&&!i[1]||j.length>1&&!j[1])return c.warn("Boolean && always false [{file}:{line},{col}]",a.start),a.left.has_side_effects(c)?b(Ya,a,{car:a.left,cdr:b(Kb)}).optimize(c):b(Kb,a);if(i.length>1&&i[1])return j[0];if(j.length>1&&j[1])return i[0];break;case"||":var i=a.left.evaluate(c),j=a.right.evaluate(c);if(i.length>1&&i[1]||j.length>1&&j[1])return c.warn("Boolean || always true [{file}:{line},{col}]",a.start),a.left.has_side_effects(c)?b(Ya,a,{car:a.left,cdr:b(Lb)}).optimize(c):b(Lb,a);if(i.length>1&&!i[1])return j[0];if(j.length>1&&!j[1])return i[0];break;case"+":var i=a.left.evaluate(c),j=a.right.evaluate(c);if(i.length>1&&i[0]instanceof Ab&&i[1]&&!a.right.has_side_effects(c)||j.length>1&&j[0]instanceof Ab&&j[1]&&!a.left.has_side_effects(c))return c.warn("+ in boolean context always true [{file}:{line},{col}]",a.start),b(Lb,a)}if(c.option("comparisons")&&a.is_boolean()){if(!(c.parent()instanceof db)||c.parent()instanceof fb){var k=A(c),l=b(bb,a,{operator:"!",expression:a.negate(c,k)});a=(k?B:v)(a,l)}if(c.option("unsafe_comps"))switch(a.operator){case"<":e(">");break;case"<=":e(">=")}}if("+"==a.operator&&a.right instanceof Ab&&""===a.right.getValue()&&a.left instanceof db&&"+"==a.left.operator&&a.left.is_string(c))return a.left;if(c.option("evaluate")){switch(a.operator){case"&&":if(a.left.is_constant())return a.left.constant_value(c)?(c.warn("Condition left of && always true [{file}:{line},{col}]",a.start),d(c.parent(),a,a.right)):(c.warn("Condition left of && always false [{file}:{line},{col}]",a.start),d(c.parent(),a,a.left));break;case"||":if(a.left.is_constant())return a.left.constant_value(c)?(c.warn("Condition left of || always true [{file}:{line},{col}]",a.start),d(c.parent(),a,a.left)):(c.warn("Condition left of || always false [{file}:{line},{col}]",a.start),d(c.parent(),a,a.right))}"+"==a.operator&&(a.left instanceof zb&&a.right instanceof db&&"+"==a.right.operator&&a.right.left instanceof zb&&a.right.is_string(c)&&(a=b(db,a,{operator:"+",left:b(Ab,null,{value:""+a.left.getValue()+a.right.left.getValue(),start:a.left.start,end:a.right.left.end}),right:a.right.right})),a.right instanceof zb&&a.left instanceof db&&"+"==a.left.operator&&a.left.right instanceof zb&&a.left.is_string(c)&&(a=b(db,a,{operator:"+",left:a.left.left,right:b(Ab,null,{value:""+a.left.right.getValue()+a.right.getValue(),start:a.left.right.start,end:a.right.end})})),a.left instanceof db&&"+"==a.left.operator&&a.left.is_string(c)&&a.left.right instanceof zb&&a.right instanceof db&&"+"==a.right.operator&&a.right.left instanceof zb&&a.right.is_string(c)&&(a=b(db,a,{operator:"+",left:b(db,a.left,{operator:"+",left:a.left.left,right:b(Ab,null,{value:""+a.left.right.getValue()+a.right.left.getValue(),start:a.left.right.start,end:a.right.left.end})}),right:a.right.right})))}return a.right instanceof db&&a.right.operator==a.operator&&("&&"==a.operator||"||"==a.operator||"+"==a.operator&&(a.right.left.is_string(c)||a.left.is_string(c)&&a.right.right.is_string(c)))?(a.left=b(db,a.left,{operator:a.operator,left:a.left,right:a.right.left}),a.right=a.right.right,a.transform(c)):a.evaluate(c)[0]}),a(wb,function(a,c){var d=a.resolve_defines(c);if(d)return d;if(a.undeclared()&&!u(a,c.parent())&&(!a.scope.uses_with||!c.find_parent(wa)))switch(a.name){case"undefined":return b(Gb,a);case"NaN":return b(Fb,a).transform(c);case"Infinity":return b(Ib,a).transform(c)}if(c.option("evaluate")&&c.option("reduce_vars")){var e=a.definition();if(!e.modified&&e.init){if(void 0===e.should_replace){var f=e.init.evaluate(c);if(f.length>1){var g=f[0].print_to_string().length,h=e.name.length,i=e.references.length,j=e.global||!i?0:(h+2+g)/i;e.should_replace=g<=h+j&&f[0]}else e.should_replace=!1}if(e.should_replace)return e.should_replace}}return a}),a(Ib,function(a,c){return b(db,a,{operator:"/",left:b(Bb,a,{value:1}),right:b(Bb,a,{value:0})})}),a(Gb,function(a,c){if(c.option("unsafe")){var d=c.find_parent(xa),e=d.find_variable("undefined");if(e)return b(wb,a,{name:"undefined",scope:d,thedef:e})}return a});var J=["+","-","/","*","%",">>","<<",">>>","|","^","&"],K=["*","|","^","&"];a(fb,function(a,b){return a=a.lift_sequences(b),"="==a.operator&&a.left instanceof wb&&a.right instanceof db&&(a.right.left instanceof wb&&a.right.left.name==a.left.name&&g(a.right.operator,J)?(a.operator=a.right.operator+"=",a.right=a.right.right):a.right.right instanceof wb&&a.right.right.name==a.left.name&&g(a.right.operator,K)&&!a.right.left.has_side_effects(b)&&(a.operator=a.right.operator+"=",a.right=a.right.left)),a}),a(eb,function(a,c){function e(a){return a.is_boolean()?a:b(bb,a,{operator:"!",expression:a.negate(c)})}function f(a){return a instanceof Lb||a instanceof bb&&"!"==a.operator&&a.expression instanceof zb&&!a.expression.value}function g(a){return a instanceof Kb||a instanceof bb&&"!"==a.operator&&a.expression instanceof zb&&!!a.expression.value}if(!c.option("conditionals"))return a;if(a.condition instanceof Ya){var h=a.condition.car;return a.condition=a.condition.cdr,Ya.cons(h,a)}var i=a.condition.evaluate(c);if(i.length>1)return i[1]?(c.warn("Condition always true [{file}:{line},{col}]",a.start),d(c.parent(),a,a.consequent)):(c.warn("Condition always false [{file}:{line},{col}]",a.start),d(c.parent(),a,a.alternative));var j=A(c),k=i[0].negate(c,j);(j?B:v)(i[0],k)===k&&(a=b(eb,a,{condition:k,consequent:a.alternative,alternative:a.consequent}));var l=a.consequent,m=a.alternative;if(l instanceof fb&&m instanceof fb&&l.operator==m.operator&&l.left.equivalent_to(m.left)&&!l.left.has_side_effects(c))return b(fb,a,{operator:l.operator,left:l.left,right:b(eb,a,{condition:a.condition,consequent:l.right,alternative:m.right})});if(l instanceof Wa&&m.TYPE===l.TYPE&&l.args.length==m.args.length&&!l.expression.has_side_effects(c)&&l.expression.equivalent_to(m.expression)){if(0==l.args.length)return b(Ya,a,{car:a.condition,cdr:l});if(1==l.args.length)return l.args[0]=b(eb,a,{condition:a.condition,consequent:l.args[0],alternative:m.args[0]}),l}if(l instanceof eb&&l.alternative.equivalent_to(m))return b(eb,a,{condition:b(db,a,{left:a.condition,operator:"&&",right:l.condition}),consequent:l.consequent,alternative:m});if(l.is_constant()&&m.is_constant()&&l.equivalent_to(m)){var n=l.evaluate(c)[0];return a.condition.has_side_effects(c)?Ya.from_array([a.condition,n]):n}return f(a.consequent)?g(a.alternative)?e(a.condition):b(db,a,{operator:"||",left:e(a.condition),right:a.alternative}):g(a.consequent)?f(a.alternative)?e(a.condition.negate(c)):b(db,a,{operator:"&&",left:e(a.condition.negate(c)),right:a.alternative}):f(a.alternative)?b(db,a,{operator:"||",left:e(a.condition.negate(c)),right:a.consequent}):g(a.alternative)?b(db,a,{operator:"&&",left:e(a.condition),right:a.consequent}):a}),a(Jb,function(a,c){if(c.option("booleans")){var d=c.parent();return d instanceof db&&("=="==d.operator||"!="==d.operator)?(c.warn("Non-strict equality against boolean: {operator} {value} [{file}:{line},{col}]",{operator:d.operator,value:a.value,file:d.start.file,line:d.start.line,col:d.start.col}),b(Bb,a,{value:+a.value})):b(bb,a,{operator:"!",expression:b(Bb,a,{value:1-a.value})})}return a}),a(_a,function(a,c){var d=a.property;if(d instanceof Ab&&c.option("properties")){if(d=d.getValue(),Ob(d)?c.option("screw_ie8"):N(d))return b($a,a,{expression:a.expression,property:d}).optimize(c);var e=parseFloat(d);isNaN(e)||e.toString()!=d||(a.property=b(Bb,a.property,{value:e}))}return a.evaluate(c)[0]}),a($a,function(a,c){var d=a.resolve_defines(c);if(d)return d;var e=a.property;if(Ob(e)&&!c.option("screw_ie8"))return b(_a,a,{expression:a.expression,property:b(Ab,a,{value:e})}).optimize(c);if(c.option("unsafe_proto")&&a.expression instanceof $a&&"prototype"==a.expression.property){var f=a.expression.expression;if(f instanceof wb&&f.undeclared())switch(f.name){case"Array":a.expression=b(gb,a.expression,{elements:[]});break;case"Object":a.expression=b(hb,a.expression,{properties:[]});break;case"String":a.expression=b(Ab,a.expression,{value:""})}}return a.evaluate(c)[0]}),a(gb,G),a(hb,G),a(Cb,G),a(Fa,function(a,b){return a.value instanceof Gb&&(a.value=null),a}),a(Va,function(a,b){var c=b.option("global_defs");return c&&z(c,a.name.name)&&b.warn("global_defs "+a.name.name+" redefined [{file}:{line},{col}]",a.start),a})}(),function(){function a(a){if("Literal"==a.type)return null!=a.raw?a.raw:a.value+""}function b(b){var c=b.loc,d=c&&c.start,e=b.range;return new fa({file:c&&c.source,line:d&&d.line,col:d&&d.column,pos:e?e[0]:b.start,endline:d&&d.line,endcol:d&&d.column,endpos:e?e[0]:b.start,raw:a(b)})}function d(b){var c=b.loc,d=c&&c.end,e=b.range;return new fa({file:c&&c.source,line:d&&d.line,col:d&&d.column,pos:e?e[1]:b.end,endline:d&&d.line,endcol:d&&d.column,endpos:e?e[1]:b.end,raw:a(b)})}function e(a,e,g){var k="function From_Moz_"+a+"(M){\n";k+="return new U2."+e.name+"({\nstart: my_start_token(M),\nend: my_end_token(M)";var m="function To_Moz_"+a+"(M){\n";m+="return {\ntype: "+JSON.stringify(a),g&&g.split(/\s*,\s*/).forEach(function(a){var b=/([a-z0-9$_]+)(=|@|>|%)([a-z0-9$_]+)/i.exec(a);if(!b)throw new Error("Can't understand property map: "+a);var c=b[1],d=b[2],e=b[3];switch(k+=",\n"+e+": ",m+=",\n"+c+": ",d){case"@":k+="M."+c+".map(from_moz)",m+="M."+e+".map(to_moz)";break;case">":k+="from_moz(M."+c+")",m+="to_moz(M."+e+")";break;case"=":k+="M."+c,m+="M."+e;break;case"%":k+="from_moz(M."+c+").body",m+="to_moz_block(M)";break;default:throw new Error("Can't understand operator in propmap: "+a)}}),k+="\n})\n}",m+="\n}\n}",k=new Function("U2","my_start_token","my_end_token","from_moz","return("+k+")")(c,b,d,f),m=new Function("to_moz","to_moz_block","return("+m+")")(i,j),l[a]=k,h(e,m)}function f(a){m.push(a);var b=null!=a?l[a.type](a):null;return m.pop(),b}function g(a,b,c){var d=a.start,e=a.end;return null!=d.pos&&null!=e.endpos&&(b.range=[d.pos,e.endpos]),d.line&&(b.loc={start:{line:d.line,column:d.col},end:e.endline?{line:e.endline,column:e.endcol}:null},
-d.file&&(b.loc.source=d.file)),b}function h(a,b){a.DEFMETHOD("to_mozilla_ast",function(){return g(this,b(this))})}function i(a){return null!=a?a.to_mozilla_ast():null}function j(a){return{type:"BlockStatement",body:a.body.map(i)}}var k=function(a){for(var b=!0,c=0;c<a.length;c++)b&&a[c]instanceof ha&&a[c].body instanceof Ab?a[c]=new ja({start:a[c].start,end:a[c].end,value:a[c].body.value}):!b||a[c]instanceof ha&&a[c].body instanceof Ab||(b=!1);return a},l={Program:function(a){return new ya({start:b(a),end:d(a),body:k(a.body.map(f))})},FunctionDeclaration:function(a){return new Ca({start:b(a),end:d(a),name:f(a.id),argnames:a.params.map(f),body:k(f(a.body).body)})},FunctionExpression:function(a){return new Ba({start:b(a),end:d(a),name:f(a.id),argnames:a.params.map(f),body:k(f(a.body).body)})},ExpressionStatement:function(a){return new ka({start:b(a),end:d(a),body:f(a.expression)})},TryStatement:function(a){var c=a.handlers||[a.handler];if(c.length>1||a.guardedHandlers&&a.guardedHandlers.length)throw new Error("Multiple catch clauses are not supported.");return new Pa({start:b(a),end:d(a),body:f(a.block).body,bcatch:f(c[0]),bfinally:a.finalizer?new Ra(f(a.finalizer)):null})},Property:function(a){var c=a.key,e="Identifier"==c.type?c.name:c.value,g={start:b(c),end:d(a.value),key:e,value:f(a.value)};switch(a.kind){case"init":return new jb(g);case"set":return g.value.name=f(c),new kb(g);case"get":return g.value.name=f(c),new lb(g)}},ArrayExpression:function(a){return new gb({start:b(a),end:d(a),elements:a.elements.map(function(a){return null===a?new Hb:f(a)})})},ObjectExpression:function(a){return new hb({start:b(a),end:d(a),properties:a.properties.map(function(a){return a.type="Property",f(a)})})},SequenceExpression:function(a){return Ya.from_array(a.expressions.map(f))},MemberExpression:function(a){return new(a.computed?_a:$a)({start:b(a),end:d(a),property:a.computed?f(a.property):a.property.name,expression:f(a.object)})},SwitchCase:function(a){return new(a.test?Oa:Na)({start:b(a),end:d(a),expression:f(a.test),body:a.consequent.map(f)})},VariableDeclaration:function(a){return new("const"===a.kind?Ua:Ta)({start:b(a),end:d(a),definitions:a.declarations.map(f)})},Literal:function(a){var c=a.value,e={start:b(a),end:d(a)};if(null===c)return new Eb(e);switch(typeof c){case"string":return e.value=c,new Ab(e);case"number":return e.value=c,new Bb(e);case"boolean":return new(c?Lb:Kb)(e);default:var f=a.regex;return f&&f.pattern?e.value=new RegExp(f.pattern,f.flags).toString():e.value=a.regex&&a.raw?a.raw:c,new Cb(e)}},Identifier:function(a){var c=m[m.length-2];return new("LabeledStatement"==c.type?vb:"VariableDeclarator"==c.type&&c.id===a?"const"==c.kind?qb:pb:"FunctionExpression"==c.type?c.id===a?tb:rb:"FunctionDeclaration"==c.type?c.id===a?sb:rb:"CatchClause"==c.type?ub:"BreakStatement"==c.type||"ContinueStatement"==c.type?xb:wb)({start:b(a),end:d(a),name:a.name})}};l.UpdateExpression=l.UnaryExpression=function(a){var c="prefix"in a?a.prefix:"UnaryExpression"==a.type;return new(c?bb:cb)({start:b(a),end:d(a),operator:a.operator,expression:f(a.argument)})},e("EmptyStatement",na),e("BlockStatement",ma,"body@body"),e("IfStatement",Ka,"test>condition, consequent>body, alternate>alternative"),e("LabeledStatement",pa,"label>label, body>body"),e("BreakStatement",Ia,"label>label"),e("ContinueStatement",Ja,"label>label"),e("WithStatement",wa,"object>expression, body>body"),e("SwitchStatement",La,"discriminant>expression, cases@body"),e("ReturnStatement",Fa,"argument>value"),e("ThrowStatement",Ga,"argument>value"),e("WhileStatement",ta,"test>condition, body>body"),e("DoWhileStatement",sa,"test>condition, body>body"),e("ForStatement",ua,"init>init, test>condition, update>step, body>body"),e("ForInStatement",va,"left>init, right>object, body>body"),e("DebuggerStatement",ia),e("VariableDeclarator",Va,"id>name, init>value"),e("CatchClause",Qa,"param>argname, body%body"),e("ThisExpression",yb),e("BinaryExpression",db,"operator=operator, left>left, right>right"),e("LogicalExpression",db,"operator=operator, left>left, right>right"),e("AssignmentExpression",fb,"operator=operator, left>left, right>right"),e("ConditionalExpression",eb,"test>condition, consequent>consequent, alternate>alternative"),e("NewExpression",Xa,"callee>expression, arguments@args"),e("CallExpression",Wa,"callee>expression, arguments@args"),h(ya,function(a){return{type:"Program",body:a.body.map(i)}}),h(Ca,function(a){return{type:"FunctionDeclaration",id:i(a.name),params:a.argnames.map(i),body:j(a)}}),h(Ba,function(a){return{type:"FunctionExpression",id:i(a.name),params:a.argnames.map(i),body:j(a)}}),h(ja,function(a){return{type:"ExpressionStatement",expression:{type:"Literal",value:a.value}}}),h(ka,function(a){return{type:"ExpressionStatement",expression:i(a.body)}}),h(Ma,function(a){return{type:"SwitchCase",test:i(a.expression),consequent:a.body.map(i)}}),h(Pa,function(a){return{type:"TryStatement",block:j(a),handler:i(a.bcatch),guardedHandlers:[],finalizer:i(a.bfinally)}}),h(Qa,function(a){return{type:"CatchClause",param:i(a.argname),guard:null,body:j(a)}}),h(Sa,function(a){return{type:"VariableDeclaration",kind:a instanceof Ua?"const":"var",declarations:a.definitions.map(i)}}),h(Ya,function(a){return{type:"SequenceExpression",expressions:a.to_array().map(i)}}),h(Za,function(a){var b=a instanceof _a;return{type:"MemberExpression",object:i(a.expression),computed:b,property:b?i(a.property):{type:"Identifier",name:a.property}}}),h(ab,function(a){return{type:"++"==a.operator||"--"==a.operator?"UpdateExpression":"UnaryExpression",operator:a.operator,prefix:a instanceof bb,argument:i(a.expression)}}),h(db,function(a){return{type:"&&"==a.operator||"||"==a.operator?"LogicalExpression":"BinaryExpression",left:i(a.left),operator:a.operator,right:i(a.right)}}),h(gb,function(a){return{type:"ArrayExpression",elements:a.elements.map(i)}}),h(hb,function(a){return{type:"ObjectExpression",properties:a.properties.map(i)}}),h(ib,function(a){var b,c=K(a.key)?{type:"Identifier",name:a.key}:{type:"Literal",value:a.key};return a instanceof jb?b="init":a instanceof lb?b="get":a instanceof kb&&(b="set"),{type:"Property",kind:b,key:c,value:i(a.value)}}),h(mb,function(a){var b=a.definition();return{type:"Identifier",name:b?b.mangled_name||b.name:a.name}}),h(Cb,function(a){var b=a.value;return{type:"Literal",value:b,raw:b.toString(),regex:{pattern:b.source,flags:b.toString().match(/[gimuy]*$/)[0]}}}),h(zb,function(a){var b=a.value;return"number"==typeof b&&(b<0||0===b&&1/b<0)?{type:"UnaryExpression",operator:"-",prefix:!0,argument:{type:"Literal",value:-b,raw:a.start.raw}}:{type:"Literal",value:b,raw:a.start.raw}}),h(Db,function(a){return{type:"Identifier",name:String(a.value)}}),Jb.DEFMETHOD("to_mozilla_ast",zb.prototype.to_mozilla_ast),Eb.DEFMETHOD("to_mozilla_ast",zb.prototype.to_mozilla_ast),Hb.DEFMETHOD("to_mozilla_ast",function(){return null}),la.DEFMETHOD("to_mozilla_ast",ma.prototype.to_mozilla_ast),za.DEFMETHOD("to_mozilla_ast",Ba.prototype.to_mozilla_ast);var m=null;ga.from_mozilla_ast=function(a){var b=m;m=[];var c=f(a);return m=b,c}}(),c.Compressor=Z,c.DefaultsError=k,c.Dictionary=y,c.JS_Parse_Error=P,c.MAP=ea,c.OutputStream=Y,c.SourceMap=$,c.TreeTransformer=U,c.TreeWalker=D,c.base54=fc,c.defaults=l,c.mangle_properties=aa,c.merge=m,c.parse=T,c.push_uniq=q,c.string_template=r,c.tokenizer=S,c.is_identifier=K,c.SymbolDef=V,"undefined"!=typeof DEBUG&&DEBUG&&(c.EXPECT_DIRECTIVE=gc),c.sys=ba,c.MOZ_SourceMap=ca,c.UglifyJS=da,c.array_to_hash=d,c.slice=e,c.characters=f,c.member=g,c.find_if=h,c.repeat_string=i,c.configure_error_stack=j,c.DefaultsError=k,c.defaults=l,c.merge=m,c.noop=n,c.return_false=o,c.return_true=p,c.MAP=ea,c.push_uniq=q,c.string_template=r,c.remove=s,c.mergeSort=t,c.set_difference=u,c.set_intersection=v,c.makePredicate=w,c.all=x,c.Dictionary=y,c.HOP=z,c.first_in_statement=A,c.DEFNODE=B,c.AST_Token=fa,c.AST_Node=ga,c.AST_Statement=ha,c.AST_Debugger=ia,c.AST_Directive=ja,c.AST_SimpleStatement=ka,c.walk_body=C,c.AST_Block=la,c.AST_BlockStatement=ma,c.AST_EmptyStatement=na,c.AST_StatementWithBody=oa,c.AST_LabeledStatement=pa,c.AST_IterationStatement=qa,c.AST_DWLoop=ra,c.AST_Do=sa,c.AST_While=ta,c.AST_For=ua,c.AST_ForIn=va,c.AST_With=wa,c.AST_Scope=xa,c.AST_Toplevel=ya,c.AST_Lambda=za,c.AST_Accessor=Aa,c.AST_Function=Ba,c.AST_Defun=Ca,c.AST_Jump=Da,c.AST_Exit=Ea,c.AST_Return=Fa,c.AST_Throw=Ga,c.AST_LoopControl=Ha,c.AST_Break=Ia,c.AST_Continue=Ja,c.AST_If=Ka,c.AST_Switch=La,c.AST_SwitchBranch=Ma,c.AST_Default=Na,c.AST_Case=Oa,c.AST_Try=Pa,c.AST_Catch=Qa,c.AST_Finally=Ra,c.AST_Definitions=Sa,c.AST_Var=Ta,c.AST_Const=Ua,c.AST_VarDef=Va,c.AST_Call=Wa,c.AST_New=Xa,c.AST_Seq=Ya,c.AST_PropAccess=Za,c.AST_Dot=$a,c.AST_Sub=_a,c.AST_Unary=ab,c.AST_UnaryPrefix=bb,c.AST_UnaryPostfix=cb,c.AST_Binary=db,c.AST_Conditional=eb,c.AST_Assign=fb,c.AST_Array=gb,c.AST_Object=hb,c.AST_ObjectProperty=ib,c.AST_ObjectKeyVal=jb,c.AST_ObjectSetter=kb,c.AST_ObjectGetter=lb,c.AST_Symbol=mb,c.AST_SymbolAccessor=nb,c.AST_SymbolDeclaration=ob,c.AST_SymbolVar=pb,c.AST_SymbolConst=qb,c.AST_SymbolFunarg=rb,c.AST_SymbolDefun=sb,c.AST_SymbolLambda=tb,c.AST_SymbolCatch=ub,c.AST_Label=vb,c.AST_SymbolRef=wb,c.AST_LabelRef=xb,c.AST_This=yb,c.AST_Constant=zb,c.AST_String=Ab,c.AST_Number=Bb,c.AST_RegExp=Cb,c.AST_Atom=Db,c.AST_Null=Eb,c.AST_NaN=Fb,c.AST_Undefined=Gb,c.AST_Hole=Hb,c.AST_Infinity=Ib,c.AST_Boolean=Jb,c.AST_False=Kb,c.AST_True=Lb,c.TreeWalker=D,c.KEYWORDS=Mb,c.KEYWORDS_ATOM=Nb,c.RESERVED_WORDS=Ob,c.KEYWORDS_BEFORE_EXPRESSION=Pb,c.OPERATOR_CHARS=Qb,c.RE_HEX_NUMBER=Rb,c.RE_OCT_NUMBER=Sb,c.OPERATORS=Tb,c.WHITESPACE_CHARS=Ub,c.NEWLINE_CHARS=Vb,c.PUNC_BEFORE_EXPRESSION=Wb,c.PUNC_CHARS=Xb,c.REGEXP_MODIFIERS=Yb,c.UNICODE=Zb,c.is_letter=E,c.is_digit=F,c.is_alphanumeric_char=G,c.is_unicode_digit=H,c.is_unicode_combining_mark=I,c.is_unicode_connector_punctuation=J,c.is_identifier=K,c.is_identifier_start=L,c.is_identifier_char=M,c.is_identifier_string=N,c.parse_js_number=O,c.JS_Parse_Error=P,c.js_error=Q,c.is_token=R,c.EX_EOF=$b,c.tokenizer=S,c.UNARY_PREFIX=_b,c.UNARY_POSTFIX=ac,c.ASSIGNMENT=bc,c.PRECEDENCE=cc,c.STATEMENTS_WITH_LABELS=dc,c.ATOMIC_START_TOKEN=ec,c.parse=T,c.TreeTransformer=U,c.SymbolDef=V,c.base54=fc,c.EXPECT_DIRECTIVE=gc,c.is_some_comments=W,c.is_comment5=X,c.OutputStream=Y,c.Compressor=Z,c.SourceMap=$,c.find_builtins=_,c.mangle_properties=aa,c.AST_Node.warn_function=function(a){"undefined"!=typeof console&&"function"==typeof console.warn&&console.warn(a)},c.minify=function(a,c){function d(a,b){var d=c.fromString?a:fs.readFileSync(a,"utf8");"inline"==e&&(e=read_source_map(d)),g[b]=d,f=da.parse(d,{filename:b,toplevel:f,bare_returns:c.parse?c.parse.bare_returns:void 0})}c=da.defaults(c,{spidermonkey:!1,outSourceMap:null,outFileName:null,sourceRoot:null,inSourceMap:null,sourceMapUrl:null,sourceMapInline:!1,fromString:!1,warnings:!1,mangle:{},mangleProperties:!1,nameCache:null,output:null,compress:{},parse:{}}),da.base54.reset();var e=c.inSourceMap;"string"==typeof e&&"inline"!=e&&(e=JSON.parse(fs.readFileSync(e,"utf8")));var f=null,g={};if(c.spidermonkey){if("inline"==e)throw new Error("inline source map only works with built-in parser");f=da.AST_Node.from_mozilla_ast(a)}else{if(!c.fromString&&(a=da.simple_glob(a),"inline"==e&&a.length>1))throw new Error("inline source map only works with singular input");[].concat(a).forEach(function(a,b){if("string"==typeof a)d(a,c.fromString?b:a);else for(var e in a)d(a[e],e)})}if(c.wrap&&(f=f.wrap_commonjs(c.wrap,c.exportAll)),c.compress){var h={warnings:c.warnings};da.merge(h,c.compress),f.figure_out_scope(c.mangle);var i=da.Compressor(h);f=i.compress(f)}(c.mangleProperties||c.nameCache)&&(c.mangleProperties.cache=da.readNameCache(c.nameCache,"props"),f=da.mangle_properties(f,c.mangleProperties),da.writeNameCache(c.nameCache,"props",c.mangleProperties.cache)),c.mangle&&(f.figure_out_scope(c.mangle),f.compute_char_frequency(c.mangle),f.mangle_names(c.mangle));var j={max_line_len:32e3};if((c.outSourceMap||c.sourceMapInline)&&(j.source_map=da.SourceMap({file:c.outFileName||("string"==typeof c.outSourceMap?c.outSourceMap.replace(/\.map$/i,""):null),orig:e,root:c.sourceRoot}),c.sourceMapIncludeSources))for(var k in g)g.hasOwnProperty(k)&&j.source_map.get().setSourceContent(k,g[k]);c.output&&da.merge(j,c.output);var l=da.OutputStream(j);f.print(l);var m=j.source_map;m&&(m+="");var n="\n//# sourceMappingURL=";return c.sourceMapInline?l+=n+"data:application/json;charset=utf-8;base64,"+new b(m).toString("base64"):c.outSourceMap&&"string"==typeof c.outSourceMap&&c.sourceMapUrl!==!1&&(l+=n+("string"==typeof c.sourceMapUrl?c.sourceMapUrl:c.outSourceMap)),{code:l+"",map:m}},c.describe_ast=function(){function a(c){b.print("AST_"+c.TYPE);var d=c.SELF_PROPS.filter(function(a){return!/^\$/.test(a)});d.length>0&&(b.space(),b.with_parens(function(){d.forEach(function(a,c){c&&b.space(),b.print(a)})})),c.documentation&&(b.space(),b.print_string(c.documentation)),c.SUBCLASSES.length>0&&(b.space(),b.with_block(function(){c.SUBCLASSES.forEach(function(c,d){b.indent(),a(c),b.newline()})}))}var b=da.OutputStream({beautify:!0});return a(da.AST_Node),b+""}}).call(this,a("buffer").Buffer)},{buffer:5,"source-map":150,util:163}],158:[function(a,b,c){"use strict";function d(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}function e(a,b,c){if(a&&j.isObject(a)&&a instanceof d)return a;var e=new d;return e.parse(a,b,c),e}function f(a){return j.isString(a)&&(a=e(a)),a instanceof d?a.format():d.prototype.format.call(a)}function g(a,b){return e(a,!1,!0).resolve(b)}function h(a,b){return a?e(a,!1,!0).resolveObject(b):b}var i=a("punycode"),j=a("./util");c.parse=e,c.resolve=g,c.resolveObject=h,c.format=f,c.Url=d;var k=/^([a-z0-9.+-]+:)/i,l=/:[0-9]*$/,m=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,n=["<",">",'"',"`"," ","\r","\n","\t"],o=["{","}","|","\\","^","`"].concat(n),p=["'"].concat(o),q=["%","/","?",";","#"].concat(p),r=["/","?","#"],s=255,t=/^[+a-z0-9A-Z_-]{0,63}$/,u=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,v={javascript:!0,"javascript:":!0},w={javascript:!0,"javascript:":!0},x={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},y=a("querystring");d.prototype.parse=function(a,b,c){if(!j.isString(a))throw new TypeError("Parameter 'url' must be a string, not "+typeof a);var d=a.indexOf("?"),e=d!==-1&&d<a.indexOf("#")?"?":"#",f=a.split(e),g=/\\/g;f[0]=f[0].replace(g,"/"),a=f.join(e);var h=a;if(h=h.trim(),!c&&1===a.split("#").length){var l=m.exec(h);if(l)return this.path=h,this.href=h,this.pathname=l[1],l[2]?(this.search=l[2],b?this.query=y.parse(this.search.substr(1)):this.query=this.search.substr(1)):b&&(this.search="",this.query={}),this}var n=k.exec(h);if(n){n=n[0];var o=n.toLowerCase();this.protocol=o,h=h.substr(n.length)}if(c||n||h.match(/^\/\/[^@\/]+@[^@\/]+/)){var z="//"===h.substr(0,2);!z||n&&w[n]||(h=h.substr(2),this.slashes=!0)}if(!w[n]&&(z||n&&!x[n])){for(var A=-1,B=0;B<r.length;B++){var C=h.indexOf(r[B]);C!==-1&&(A===-1||C<A)&&(A=C)}var D,E;E=A===-1?h.lastIndexOf("@"):h.lastIndexOf("@",A),E!==-1&&(D=h.slice(0,E),h=h.slice(E+1),this.auth=decodeURIComponent(D)),A=-1;for(var B=0;B<q.length;B++){var C=h.indexOf(q[B]);C!==-1&&(A===-1||C<A)&&(A=C)}A===-1&&(A=h.length),this.host=h.slice(0,A),h=h.slice(A),this.parseHost(),this.hostname=this.hostname||"";var F="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!F)for(var G=this.hostname.split(/\./),B=0,H=G.length;B<H;B++){var I=G[B];if(I&&!I.match(t)){for(var J="",K=0,L=I.length;K<L;K++)J+=I.charCodeAt(K)>127?"x":I[K];if(!J.match(t)){var M=G.slice(0,B),N=G.slice(B+1),O=I.match(u);O&&(M.push(O[1]),N.unshift(O[2])),N.length&&(h="/"+N.join(".")+h),this.hostname=M.join(".");break}}}this.hostname.length>s?this.hostname="":this.hostname=this.hostname.toLowerCase(),F||(this.hostname=i.toASCII(this.hostname));var P=this.port?":"+this.port:"",Q=this.hostname||"";this.host=Q+P,this.href+=this.host,F&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==h[0]&&(h="/"+h))}if(!v[o])for(var B=0,H=p.length;B<H;B++){var R=p[B];if(h.indexOf(R)!==-1){var S=encodeURIComponent(R);S===R&&(S=escape(R)),h=h.split(R).join(S)}}var T=h.indexOf("#");T!==-1&&(this.hash=h.substr(T),h=h.slice(0,T));var U=h.indexOf("?");if(U!==-1?(this.search=h.substr(U),this.query=h.substr(U+1),b&&(this.query=y.parse(this.query)),h=h.slice(0,U)):b&&(this.search="",this.query={}),h&&(this.pathname=h),x[o]&&this.hostname&&!this.pathname&&(this.pathname="/"),this.pathname||this.search){var P=this.pathname||"",V=this.search||"";this.path=P+V}return this.href=this.format(),this},d.prototype.format=function(){var a=this.auth||"";a&&(a=encodeURIComponent(a),a=a.replace(/%3A/i,":"),a+="@");var b=this.protocol||"",c=this.pathname||"",d=this.hash||"",e=!1,f="";this.host?e=a+this.host:this.hostname&&(e=a+(this.hostname.indexOf(":")===-1?this.hostname:"["+this.hostname+"]"),this.port&&(e+=":"+this.port)),this.query&&j.isObject(this.query)&&Object.keys(this.query).length&&(f=y.stringify(this.query));var g=this.search||f&&"?"+f||"";return b&&":"!==b.substr(-1)&&(b+=":"),this.slashes||(!b||x[b])&&e!==!1?(e="//"+(e||""),c&&"/"!==c.charAt(0)&&(c="/"+c)):e||(e=""),d&&"#"!==d.charAt(0)&&(d="#"+d),g&&"?"!==g.charAt(0)&&(g="?"+g),c=c.replace(/[?#]/g,function(a){return encodeURIComponent(a)}),g=g.replace("#","%23"),b+e+c+g+d},d.prototype.resolve=function(a){return this.resolveObject(e(a,!1,!0)).format()},d.prototype.resolveObject=function(a){if(j.isString(a)){var b=new d;b.parse(a,!1,!0),a=b}for(var c=new d,e=Object.keys(this),f=0;f<e.length;f++){var g=e[f];c[g]=this[g]}if(c.hash=a.hash,""===a.href)return c.href=c.format(),c;if(a.slashes&&!a.protocol){for(var h=Object.keys(a),i=0;i<h.length;i++){var k=h[i];"protocol"!==k&&(c[k]=a[k])}return x[c.protocol]&&c.hostname&&!c.pathname&&(c.path=c.pathname="/"),c.href=c.format(),c}if(a.protocol&&a.protocol!==c.protocol){if(!x[a.protocol]){for(var l=Object.keys(a),m=0;m<l.length;m++){var n=l[m];c[n]=a[n]}return c.href=c.format(),c}if(c.protocol=a.protocol,a.host||w[a.protocol])c.pathname=a.pathname;else{for(var o=(a.pathname||"").split("/");o.length&&!(a.host=o.shift()););a.host||(a.host=""),a.hostname||(a.hostname=""),""!==o[0]&&o.unshift(""),o.length<2&&o.unshift(""),c.pathname=o.join("/")}if(c.search=a.search,c.query=a.query,c.host=a.host||"",c.auth=a.auth,c.hostname=a.hostname||a.host,c.port=a.port,c.pathname||c.search){var p=c.pathname||"",q=c.search||"";c.path=p+q}return c.slashes=c.slashes||a.slashes,c.href=c.format(),c}var r=c.pathname&&"/"===c.pathname.charAt(0),s=a.host||a.pathname&&"/"===a.pathname.charAt(0),t=s||r||c.host&&a.pathname,u=t,v=c.pathname&&c.pathname.split("/")||[],o=a.pathname&&a.pathname.split("/")||[],y=c.protocol&&!x[c.protocol];if(y&&(c.hostname="",c.port=null,c.host&&(""===v[0]?v[0]=c.host:v.unshift(c.host)),c.host="",a.protocol&&(a.hostname=null,a.port=null,a.host&&(""===o[0]?o[0]=a.host:o.unshift(a.host)),a.host=null),t=t&&(""===o[0]||""===v[0])),s)c.host=a.host||""===a.host?a.host:c.host,c.hostname=a.hostname||""===a.hostname?a.hostname:c.hostname,c.search=a.search,c.query=a.query,v=o;else if(o.length)v||(v=[]),v.pop(),v=v.concat(o),c.search=a.search,c.query=a.query;else if(!j.isNullOrUndefined(a.search)){if(y){c.hostname=c.host=v.shift();var z=!!(c.host&&c.host.indexOf("@")>0)&&c.host.split("@");z&&(c.auth=z.shift(),c.host=c.hostname=z.shift())}return c.search=a.search,c.query=a.query,j.isNull(c.pathname)&&j.isNull(c.search)||(c.path=(c.pathname?c.pathname:"")+(c.search?c.search:"")),c.href=c.format(),c}if(!v.length)return c.pathname=null,c.search?c.path="/"+c.search:c.path=null,c.href=c.format(),c;for(var A=v.slice(-1)[0],B=(c.host||a.host||v.length>1)&&("."===A||".."===A)||""===A,C=0,D=v.length;D>=0;D--)A=v[D],"."===A?v.splice(D,1):".."===A?(v.splice(D,1),C++):C&&(v.splice(D,1),C--);if(!t&&!u)for(;C--;C)v.unshift("..");!t||""===v[0]||v[0]&&"/"===v[0].charAt(0)||v.unshift(""),B&&"/"!==v.join("/").substr(-1)&&v.push("");var E=""===v[0]||v[0]&&"/"===v[0].charAt(0);if(y){c.hostname=c.host=E?"":v.length?v.shift():"";var z=!!(c.host&&c.host.indexOf("@")>0)&&c.host.split("@");z&&(c.auth=z.shift(),c.host=c.hostname=z.shift())}return t=t||c.host&&v.length,t&&!E&&v.unshift(""),v.length?c.pathname=v.join("/"):(c.pathname=null,c.path=null),j.isNull(c.pathname)&&j.isNull(c.search)||(c.path=(c.pathname?c.pathname:"")+(c.search?c.search:"")),c.auth=a.auth||c.auth,c.slashes=c.slashes||a.slashes,c.href=c.format(),c},d.prototype.parseHost=function(){var a=this.host,b=l.exec(a);b&&(b=b[0],":"!==b&&(this.port=b.substr(1)),a=a.substr(0,a.length-b.length)),a&&(this.hostname=a)}},{"./util":159,punycode:112,querystring:115}],159:[function(a,b,c){"use strict";b.exports={isString:function(a){return"string"==typeof a},isObject:function(a){return"object"==typeof a&&null!==a},isNull:function(a){return null===a},isNullOrUndefined:function(a){return null==a}}},{}],160:[function(a,b,c){(function(a){function c(a,b){function c(){if(!e){if(d("throwDeprecation"))throw new Error(b);d("traceDeprecation")?console.trace(b):console.warn(b),e=!0}return a.apply(this,arguments)}if(d("noDeprecation"))return a;var e=!1;return c}function d(b){try{if(!a.localStorage)return!1}catch(a){return!1}var c=a.localStorage[b];return null!=c&&"true"===String(c).toLowerCase()}b.exports=c}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],161:[function(a,b,c){arguments[4][104][0].apply(c,arguments)},{dup:104}],162:[function(a,b,c){b.exports=function(a){return a&&"object"==typeof a&&"function"==typeof a.copy&&"function"==typeof a.fill&&"function"==typeof a.readUInt8}},{}],163:[function(a,b,c){(function(b,d){function e(a,b){var d={seen:[],stylize:g};return arguments.length>=3&&(d.depth=arguments[2]),arguments.length>=4&&(d.colors=arguments[3]),p(b)?d.showHidden=b:b&&c._extend(d,b),v(d.showHidden)&&(d.showHidden=!1),v(d.depth)&&(d.depth=2),v(d.colors)&&(d.colors=!1),v(d.customInspect)&&(d.customInspect=!0),d.colors&&(d.stylize=f),i(d,a,d.depth)}function f(a,b){var c=e.styles[b];return c?"\e["+e.colors[c][0]+"m"+a+"\e["+e.colors[c][1]+"m":a}function g(a,b){return a}function h(a){var b={};return a.forEach(function(a,c){b[a]=!0}),b}function i(a,b,d){if(a.customInspect&&b&&A(b.inspect)&&b.inspect!==c.inspect&&(!b.constructor||b.constructor.prototype!==b)){var e=b.inspect(d,a);return t(e)||(e=i(a,e,d)),e}var f=j(a,b);if(f)return f;var g=Object.keys(b),p=h(g);if(a.showHidden&&(g=Object.getOwnPropertyNames(b)),z(b)&&(g.indexOf("message")>=0||g.indexOf("description")>=0))return k(b);if(0===g.length){if(A(b)){var q=b.name?": "+b.name:"";return a.stylize("[Function"+q+"]","special")}if(w(b))return a.stylize(RegExp.prototype.toString.call(b),"regexp");if(y(b))return a.stylize(Date.prototype.toString.call(b),"date");if(z(b))return k(b)}var r="",s=!1,u=["{","}"];if(o(b)&&(s=!0,u=["[","]"]),A(b)){var v=b.name?": "+b.name:"";r=" [Function"+v+"]"}if(w(b)&&(r=" "+RegExp.prototype.toString.call(b)),y(b)&&(r=" "+Date.prototype.toUTCString.call(b)),z(b)&&(r=" "+k(b)),0===g.length&&(!s||0==b.length))return u[0]+r+u[1];if(d<0)return w(b)?a.stylize(RegExp.prototype.toString.call(b),"regexp"):a.stylize("[Object]","special");a.seen.push(b);var x;return x=s?l(a,b,d,p,g):g.map(function(c){return m(a,b,d,p,c,s)}),a.seen.pop(),n(x,r,u)}function j(a,b){if(v(b))return a.stylize("undefined","undefined");if(t(b)){var c="'"+JSON.stringify(b).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return a.stylize(c,"string")}return s(b)?a.stylize(""+b,"number"):p(b)?a.stylize(""+b,"boolean"):q(b)?a.stylize("null","null"):void 0}function k(a){return"["+Error.prototype.toString.call(a)+"]"}function l(a,b,c,d,e){for(var f=[],g=0,h=b.length;g<h;++g)F(b,String(g))?f.push(m(a,b,c,d,String(g),!0)):f.push("");return e.forEach(function(e){e.match(/^\d+$/)||f.push(m(a,b,c,d,e,!0))}),f}function m(a,b,c,d,e,f){var g,h,j;if(j=Object.getOwnPropertyDescriptor(b,e)||{value:b[e]},j.get?h=j.set?a.stylize("[Getter/Setter]","special"):a.stylize("[Getter]","special"):j.set&&(h=a.stylize("[Setter]","special")),F(d,e)||(g="["+e+"]"),h||(a.seen.indexOf(j.value)<0?(h=q(c)?i(a,j.value,null):i(a,j.value,c-1),h.indexOf("\n")>-1&&(h=f?h.split("\n").map(function(a){return"  "+a}).join("\n").substr(2):"\n"+h.split("\n").map(function(a){return"   "+a}).join("\n"))):h=a.stylize("[Circular]","special")),v(g)){if(f&&e.match(/^\d+$/))return h;g=JSON.stringify(""+e),g.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(g=g.substr(1,g.length-2),g=a.stylize(g,"name")):(g=g.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),g=a.stylize(g,"string"))}return g+": "+h}function n(a,b,c){var d=0,e=a.reduce(function(a,b){return d++,b.indexOf("\n")>=0&&d++,a+b.replace(/\u001b\[\d\d?m/g,"").length+1},0);return e>60?c[0]+(""===b?"":b+"\n ")+" "+a.join(",\n  ")+" "+c[1]:c[0]+b+" "+a.join(", ")+" "+c[1]}function o(a){return Array.isArray(a)}function p(a){return"boolean"==typeof a}function q(a){return null===a}function r(a){return null==a}function s(a){return"number"==typeof a}function t(a){return"string"==typeof a}function u(a){return"symbol"==typeof a}function v(a){return void 0===a}function w(a){return x(a)&&"[object RegExp]"===C(a)}function x(a){return"object"==typeof a&&null!==a}function y(a){return x(a)&&"[object Date]"===C(a)}function z(a){return x(a)&&("[object Error]"===C(a)||a instanceof Error)}function A(a){return"function"==typeof a}function B(a){return null===a||"boolean"==typeof a||"number"==typeof a||"string"==typeof a||"symbol"==typeof a||"undefined"==typeof a}function C(a){return Object.prototype.toString.call(a)}function D(a){return a<10?"0"+a.toString(10):a.toString(10)}function E(){var a=new Date,b=[D(a.getHours()),D(a.getMinutes()),D(a.getSeconds())].join(":");return[a.getDate(),J[a.getMonth()],b].join(" ")}function F(a,b){return Object.prototype.hasOwnProperty.call(a,b)}var G=/%[sdj%]/g;c.format=function(a){if(!t(a)){for(var b=[],c=0;c<arguments.length;c++)b.push(e(arguments[c]));return b.join(" ")}for(var c=1,d=arguments,f=d.length,g=String(a).replace(G,function(a){if("%%"===a)return"%";if(c>=f)return a;switch(a){case"%s":return String(d[c++]);case"%d":return Number(d[c++]);case"%j":try{return JSON.stringify(d[c++])}catch(a){return"[Circular]"}default:return a}}),h=d[c];c<f;h=d[++c])g+=q(h)||!x(h)?" "+h:" "+e(h);return g},c.deprecate=function(a,e){function f(){if(!g){if(b.throwDeprecation)throw new Error(e);b.traceDeprecation?console.trace(e):console.error(e),g=!0}return a.apply(this,arguments)}if(v(d.process))return function(){return c.deprecate(a,e).apply(this,arguments)};if(b.noDeprecation===!0)return a;var g=!1;return f};var H,I={};c.debuglog=function(a){if(v(H)&&(H=b.env.NODE_DEBUG||""),a=a.toUpperCase(),!I[a])if(new RegExp("\\b"+a+"\\b","i").test(H)){var d=b.pid;I[a]=function(){var b=c.format.apply(c,arguments);console.error("%s %d: %s",a,d,b)}}else I[a]=function(){};return I[a]},c.inspect=e,e.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},e.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},c.isArray=o,c.isBoolean=p,c.isNull=q,c.isNullOrUndefined=r,c.isNumber=s,c.isString=t,c.isSymbol=u,c.isUndefined=v,c.isRegExp=w,c.isObject=x,c.isDate=y,c.isError=z,c.isFunction=A,c.isPrimitive=B,c.isBuffer=a("./support/isBuffer");var J=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];c.log=function(){console.log("%s - %s",E(),c.format.apply(c,arguments))},c.inherits=a("inherits"),c._extend=function(a,b){if(!b||!x(b))return a;for(var c=Object.keys(b),d=c.length;d--;)a[c[d]]=b[c[d]];return a}}).call(this,a("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./support/isBuffer":162,_process:111,inherits:161}],164:[function(a,b,c){c.baseChar=/[A-Za-z\xC0-\xD6\xD8-\xF6\xF8-\u0131\u0134-\u013E\u0141-\u0148\u014A-\u017E\u0180-\u01C3\u01CD-\u01F0\u01F4\u01F5\u01FA-\u0217\u0250-\u02A8\u02BB-\u02C1\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03CE\u03D0-\u03D6\u03DA\u03DC\u03DE\u03E0\u03E2-\u03F3\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E-\u0481\u0490-\u04C4\u04C7\u04C8\u04CB\u04CC\u04D0-\u04EB\u04EE-\u04F5\u04F8\u04F9\u0531-\u0556\u0559\u0561-\u0586\u05D0-\u05EA\u05F0-\u05F2\u0621-\u063A\u0641-\u064A\u0671-\u06B7\u06BA-\u06BE\u06C0-\u06CE\u06D0-\u06D3\u06D5\u06E5\u06E6\u0905-\u0939\u093D\u0958-\u0961\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8B\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AE0\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B36-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB5\u0BB7-\u0BB9\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CDE\u0CE0\u0CE1\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D28\u0D2A-\u0D39\u0D60\u0D61\u0E01-\u0E2E\u0E30\u0E32\u0E33\u0E40-\u0E45\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD\u0EAE\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0F40-\u0F47\u0F49-\u0F69\u10A0-\u10C5\u10D0-\u10F6\u1100\u1102\u1103\u1105-\u1107\u1109\u110B\u110C\u110E-\u1112\u113C\u113E\u1140\u114C\u114E\u1150\u1154\u1155\u1159\u115F-\u1161\u1163\u1165\u1167\u1169\u116D\u116E\u1172\u1173\u1175\u119E\u11A8\u11AB\u11AE\u11AF\u11B7\u11B8\u11BA\u11BC-\u11C2\u11EB\u11F0\u11F9\u1E00-\u1E9B\u1EA0-\u1EF9\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2126\u212A\u212B\u212E\u2180-\u2182\u3041-\u3094\u30A1-\u30FA\u3105-\u312C\uAC00-\uD7A3]/,c.ideographic=/[\u3007\u3021-\u3029\u4E00-\u9FA5]/,c.letter=/[A-Za-z\xC0-\xD6\xD8-\xF6\xF8-\u0131\u0134-\u013E\u0141-\u0148\u014A-\u017E\u0180-\u01C3\u01CD-\u01F0\u01F4\u01F5\u01FA-\u0217\u0250-\u02A8\u02BB-\u02C1\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03CE\u03D0-\u03D6\u03DA\u03DC\u03DE\u03E0\u03E2-\u03F3\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E-\u0481\u0490-\u04C4\u04C7\u04C8\u04CB\u04CC\u04D0-\u04EB\u04EE-\u04F5\u04F8\u04F9\u0531-\u0556\u0559\u0561-\u0586\u05D0-\u05EA\u05F0-\u05F2\u0621-\u063A\u0641-\u064A\u0671-\u06B7\u06BA-\u06BE\u06C0-\u06CE\u06D0-\u06D3\u06D5\u06E5\u06E6\u0905-\u0939\u093D\u0958-\u0961\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8B\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AE0\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B36-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB5\u0BB7-\u0BB9\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CDE\u0CE0\u0CE1\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D28\u0D2A-\u0D39\u0D60\u0D61\u0E01-\u0E2E\u0E30\u0E32\u0E33\u0E40-\u0E45\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD\u0EAE\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0F40-\u0F47\u0F49-\u0F69\u10A0-\u10C5\u10D0-\u10F6\u1100\u1102\u1103\u1105-\u1107\u1109\u110B\u110C\u110E-\u1112\u113C\u113E\u1140\u114C\u114E\u1150\u1154\u1155\u1159\u115F-\u1161\u1163\u1165\u1167\u1169\u116D\u116E\u1172\u1173\u1175\u119E\u11A8\u11AB\u11AE\u11AF\u11B7\u11B8\u11BA\u11BC-\u11C2\u11EB\u11F0\u11F9\u1E00-\u1E9B\u1EA0-\u1EF9\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2126\u212A\u212B\u212E\u2180-\u2182\u3007\u3021-\u3029\u3041-\u3094\u30A1-\u30FA\u3105-\u312C\u4E00-\u9FA5\uAC00-\uD7A3]/,
-c.combiningChar=/[\u0300-\u0345\u0360\u0361\u0483-\u0486\u0591-\u05A1\u05A3-\u05B9\u05BB-\u05BD\u05BF\u05C1\u05C2\u05C4\u064B-\u0652\u0670\u06D6-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0901-\u0903\u093C\u093E-\u094D\u0951-\u0954\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u0A02\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A70\u0A71\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0B01-\u0B03\u0B3C\u0B3E-\u0B43\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B82\u0B83\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C01-\u0C03\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C82\u0C83\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0D02\u0D03\u0D3E-\u0D43\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EB9\u0EBB\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86-\u0F8B\u0F90-\u0F95\u0F97\u0F99-\u0FAD\u0FB1-\u0FB7\u0FB9\u20D0-\u20DC\u20E1\u302A-\u302F\u3099\u309A]/,c.digit=/[0-9\u0660-\u0669\u06F0-\u06F9\u0966-\u096F\u09E6-\u09EF\u0A66-\u0A6F\u0AE6-\u0AEF\u0B66-\u0B6F\u0BE7-\u0BEF\u0C66-\u0C6F\u0CE6-\u0CEF\u0D66-\u0D6F\u0E50-\u0E59\u0ED0-\u0ED9\u0F20-\u0F29]/,c.extender=/[\xB7\u02D0\u02D1\u0387\u0640\u0E46\u0EC6\u3005\u3031-\u3035\u309D\u309E\u30FC-\u30FE]/},{}],165:[function(a,b,c){function d(){for(var a={},b=0;b<arguments.length;b++){var c=arguments[b];for(var d in c)e.call(c,d)&&(a[d]=c[d])}return a}b.exports=d;var e=Object.prototype.hasOwnProperty},{}],166:[function(a,b,c){"use strict";function d(a){return h(a,!0)}function e(a){var b=i.source+"(?:\\s*("+f(a)+")\\s*(?:"+l.join("|")+"))?";if(a.customAttrSurround){for(var c=[],d=a.customAttrSurround.length-1;d>=0;d--)c[d]="(?:("+a.customAttrSurround[d][0].source+")\\s*"+b+"\\s*("+a.customAttrSurround[d][1].source+"))";c.push("(?:"+b+")"),b="(?:"+c.join("|")+")"}return new RegExp("^\\s*"+b)}function f(a){return k.concat(a.customAttrAssign||[]).map(function(a){return"(?:"+a.source+")"}).join("|")}function g(a,b){function c(a){var b=a.match(n);if(b){var c={tagName:b[1],attrs:[]};a=a.slice(b[0].length);for(var d,e;!(d=a.match(o))&&(e=a.match(l));)a=a.slice(e[0].length),c.attrs.push(e);if(d)return c.unarySlash=d[1],c.rest=a.slice(d[0].length),c}}function d(a){var c=a.tagName,d=a.unarySlash;if(b.html5&&"p"===g&&x(c)&&f("",g),!b.html5)for(;g&&t(g);)f("",g);u(c)&&g===c&&f("",c);var e=s(c)||"html"===c&&"head"===g||!!d,h=a.attrs.map(function(a){function c(b){return h=a[b],e=a[b+1],"undefined"!=typeof e?'"':(e=a[b+2],"undefined"!=typeof e?"'":(e=a[b+3],"undefined"==typeof e&&v(d)&&(e=d),""))}var d,e,f,g,h,i,j=7;r&&a[0].indexOf('""')===-1&&(""===a[3]&&delete a[3],""===a[4]&&delete a[4],""===a[5]&&delete a[5]);var k=1;if(b.customAttrSurround)for(var l=0,m=b.customAttrSurround.length;l<m;l++,k+=j)if(d=a[k+1]){i=c(k+2),f=a[k],g=a[k+6];break}return!d&&(d=a[k])&&(i=c(k+1)),{name:d,value:e,customAssign:h||"=",customOpen:f||"",customClose:g||"",quote:i||""}});e||(k.push({tag:c,attrs:h}),g=c,d=""),b.start&&b.start(c,h,e,d)}function f(a,c){var d;if(c){var e=c.toLowerCase();for(d=k.length-1;d>=0&&k[d].tag.toLowerCase()!==e;d--);}else d=0;if(d>=0){for(var f=k.length-1;f>=d;f--)b.end&&b.end(k[f].tag,k[f].attrs,f>d||!a);k.length=d,g=d&&k[d-1].tag}else"br"===c.toLowerCase()?b.start&&b.start(c,[],!0,""):"p"===c.toLowerCase()&&(b.start&&b.start(c,[],!1,"",!0),b.end&&b.end(c,[]))}for(var g,h,i,j,k=[],l=e(b);a;){if(h=a,g&&w(g)){var m=g.toLowerCase(),z=y[m]||(y[m]=new RegExp("([\\s\\S]*?)</"+m+"[^>]*>","i"));a=a.replace(z,function(a,c){return"script"!==m&&"style"!==m&&"noscript"!==m&&(c=c.replace(/<!--([\s\S]*?)-->/g,"$1").replace(/<!\[CDATA\[([\s\S]*?)]]>/g,"$1")),b.chars&&b.chars(c),""}),f("</"+m+">",m)}else{var A=a.indexOf("<");if(0===A){if(/^<!--/.test(a)){var B=a.indexOf("-->");if(B>=0){b.comment&&b.comment(a.substring(4,B)),a=a.substring(B+3),i="";continue}}if(/^<!\[/.test(a)){var C=a.indexOf("]>");if(C>=0){b.comment&&b.comment(a.substring(2,C+1),!0),a=a.substring(C+2),i="";continue}}var D=a.match(q);if(D){b.doctype&&b.doctype(D[0]),a=a.substring(D[0].length),i="";continue}var E=a.match(p);if(E){a=a.substring(E[0].length),E[0].replace(p,f),i="/"+E[1].toLowerCase();continue}var F=c(a);if(F){a=F.rest,d(F),i=F.tagName.toLowerCase();continue}}var G;A>=0?(G=a.substring(0,A),a=a.substring(A)):(G=a,a="");var H=c(a);H?j=H.tagName:(H=a.match(p),j=H?"/"+H[1]:""),b.chars&&b.chars(G,i,j),i=""}if(a===h)throw new Error("Parse Error: "+a)}b.partialMarkup||f()}var h=a("./utils").createMapFromString,i=/([^\s"'<>\/=]+)/,j=/=/,k=[j],l=[/"([^"]*)"+/.source,/'([^']*)'+/.source,/([^\s"'=<>`]+)/.source],m=function(){var b=a("ncname").source.slice(1,-1);return"((?:"+b+"\\:)?"+b+")"}(),n=new RegExp("^<"+m),o=/^\s*(\/?)>/,p=new RegExp("^<\\/"+m+"[^>]*>"),q=/^<!DOCTYPE [^>]+>/i,r=!1;"x".replace(/x(.)?/g,function(a,b){r=""===b});var s=d("area,base,basefont,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),t=d("a,abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,noscript,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,svg,textarea,tt,u,var"),u=d("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),v=d("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected"),w=d("script,style"),x=d("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),y={};c.HTMLParser=g,c.HTMLtoXML=function(a){var b="";return new g(a,{start:function(a,c,d){b+="<"+a;for(var e=0,f=c.length;e<f;e++)b+=" "+c[e].name+'="'+(c[e].value||"").replace(/"/g,"&#34;")+'"';b+=(d?"/":"")+">"},end:function(a){b+="</"+a+">"},chars:function(a){b+=a},comment:function(a){b+="<!--"+a+"-->"},ignore:function(a){b+=a}}),b},c.HTMLtoDOM=function(a,b){var c={html:!0,head:!0,body:!0,title:!0},d={link:"head",base:"head"};b?b=b.ownerDocument||b.getOwnerDocument&&b.getOwnerDocument()||b:"undefined"!=typeof DOMDocument?b=new DOMDocument:"undefined"!=typeof document&&document.implementation&&document.implementation.createDocument?b=document.implementation.createDocument("","",null):"undefined"!=typeof ActiveX&&(b=new ActiveXObject("Msxml.DOMDocument"));var e=[],f=b.documentElement||b.getDocumentElement&&b.getDocumentElement();if(!f&&b.createElement&&!function(){var a=b.createElement("html"),c=b.createElement("head");c.appendChild(b.createElement("title")),a.appendChild(c),a.appendChild(b.createElement("body")),b.appendChild(a)}(),b.getElementsByTagName)for(var h in c)c[h]=b.getElementsByTagName(h)[0];var i=c.body;return new g(a,{start:function(a,f,g){if(c[a])return void(i=c[a]);var h=b.createElement(a);for(var j in f)h.setAttribute(f[j].name,f[j].value);d[a]&&"boolean"!=typeof c[d[a]]?c[d[a]].appendChild(h):i&&i.appendChild&&i.appendChild(h),g||(e.push(h),i=h)},end:function(){e.length-=1,i=e[e.length-1]},chars:function(a){i.appendChild(b.createTextNode(a))},comment:function(){},ignore:function(){}}),b}},{"./utils":168,ncname:107}],167:[function(a,b,c){"use strict";function d(){}function e(){}d.prototype.sort=function(a,b){b=b||0;for(var c=0,d=this.tokens.length;c<d;c++){var e=this.tokens[c],f=a.indexOf(e,b);if(f!==-1){do f!==b&&(a.splice(f,1),a.splice(b,0,e)),b++;while((f=a.indexOf(e,b))!==-1);return this[e].sort(a,b)}}return a},e.prototype={add:function(a){var b=this;a.forEach(function(c){b[c]||(b[c]=[],b[c].processed=0),b[c].push(a)})},createSorter:function(){var a=this,b=new d;return b.tokens=Object.keys(this).sort(function(b,c){var d=a[b].length,e=a[c].length;return d<e?1:d>e?-1:b<c?-1:b>c?1:0}).filter(function(c){if(a[c].processed<a[c].length){var d=new e;return a[c].forEach(function(b){for(var e;(e=b.indexOf(c))!==-1;)b.splice(e,1);b.forEach(function(b){a[b].processed++}),d.add(b.slice(0))}),b[c]=d.createSorter(),!0}return!1}),b}},b.exports=e},{}],168:[function(a,b,c){"use strict";function d(a,b){var c={};return a.forEach(function(a){c[a]=1}),b?function(a){return 1===c[a.toLowerCase()]}:function(a){return 1===c[a]}}c.createMap=d,c.createMapFromString=function(a,b){return d(a.split(/,/),b)}},{}],"html-minifier":[function(a,b,c){"use strict";function d(a){return a&&a.replace(/\s+/g,function(a){return"\t"===a?"\t":a.replace(/(^|\xA0+)[^\xA0]+/g,"$1 ")})}function e(a,b,c,e,f){var g="",h="";return b.preserveLineBreaks&&(a=a.replace(/^\s*?[\n\r]\s*/,function(){return g="\n",""}).replace(/\s*?[\n\r]\s*$/,function(){return h="\n",""})),c&&(a=a.replace(/^\s+/,function(a){var c=!g&&b.conservativeCollapse;return c&&"\t"===a?"\t":a.replace(/^[^\xA0]+/,"").replace(/(\xA0+)[^\xA0]+/g,"$1 ")||(c?" ":"")})),e&&(a=a.replace(/\s+$/,function(a){var c=!h&&b.conservativeCollapse;return c&&"\t"===a?"\t":a.replace(/[^\xA0]+(\xA0+)/g," $1").replace(/[^\xA0]+$/,"")||(c?" ":"")})),f&&(a=d(a)),g+a+h}function f(a,b,c,d){var f=b&&!da(b);f&&!d.collapseInlineTagWhitespace&&(f="/"===b.charAt(0)?!ba(b.slice(1)):!ca(b));var g=c&&!da(c);return g&&!d.collapseInlineTagWhitespace&&(g="/"===c.charAt(0)?!ca(c.slice(1)):!ba(c)),e(a,d,f,g,b&&c)}function g(a){return/^\[if\s[^\]]+]|\[endif]$/.test(a)}function h(a,b){for(var c=0,d=b.ignoreCustomComments.length;c<d;c++)if(b.ignoreCustomComments[c].test(a))return!0;return!1}function i(a,b){var c=b.customEventAttributes;if(c){for(var d=c.length;d--;)if(c[d].test(a))return!0;return!1}return/^on[a-z]{3,}$/.test(a)}function j(a){return/^[^ \t\n\f\r"'`=<>]+$/.test(a)}function k(a,b){for(var c=a.length;c--;)if(a[c].name.toLowerCase()===b)return!0;return!1}function l(a,b,c,d){return c=c?_(c.toLowerCase()):"","script"===a&&"language"===b&&"javascript"===c||"form"===a&&"method"===b&&"get"===c||"input"===a&&"type"===b&&"text"===c||"script"===a&&"charset"===b&&!k(d,"src")||"a"===a&&"name"===b&&k(d,"id")||"area"===a&&"shape"===b&&"rect"===c}function m(a){return a=_(a.split(/;/,2)[0]).toLowerCase(),""===a||ea(a)}function n(a,b){if("script"!==a)return!1;for(var c=0,d=b.length;c<d;c++){var e=b[c].name.toLowerCase();if("type"===e)return m(b[c].value)}return!0}function o(a){return a=_(a).toLowerCase(),""===a||"text/css"===a}function p(a,b){if("style"!==a)return!1;for(var c=0,d=b.length;c<d;c++){var e=b[c].name.toLowerCase();if("type"===e)return o(b[c].value)}return!0}function q(a,b){return fa(a)||"draggable"===a&&!ga(b)}function r(a,b){return/^(?:a|area|link|base)$/.test(b)&&"href"===a||"img"===b&&/^(?:src|longdesc|usemap)$/.test(a)||"object"===b&&/^(?:classid|codebase|data|usemap)$/.test(a)||"q"===b&&"cite"===a||"blockquote"===b&&"cite"===a||("ins"===b||"del"===b)&&"cite"===a||"form"===b&&"action"===a||"input"===b&&("src"===a||"usemap"===a)||"head"===b&&"profile"===a||"script"===b&&("src"===a||"for"===a)}function s(a,b){return/^(?:a|area|object|button)$/.test(b)&&"tabindex"===a||"input"===b&&("maxlength"===a||"tabindex"===a)||"select"===b&&("size"===a||"tabindex"===a)||"textarea"===b&&/^(?:rows|cols|tabindex)$/.test(a)||"colgroup"===b&&"span"===a||"col"===b&&"span"===a||("th"===b||"td"===b)&&("rowspan"===a||"colspan"===a)}function t(a,b,c){if("link"!==a)return!1;for(var d=0,e=b.length;d<e;d++)if("rel"===b[d].name&&b[d].value===c)return!0}function u(a,b,c){return"media"===c&&(t(a,b,"stylesheet")||p(a,b))}function v(a,b){return"srcset"===a&&ha(b)}function w(a,b,c,e,f){if(c&&i(b,e))return c=_(c).replace(/^javascript:\s*/i,""),e.minifyJS(c,!0);if("class"===b)return c=_(c),c=e.sortClassName?e.sortClassName(c):d(c);if(r(b,a))return c=_(c),t(a,f,"canonical")?c:e.minifyURLs(c);if(s(b,a))return _(c);if("style"===b)return c=_(c),c&&(/;$/.test(c)&&!/&#?[0-9a-zA-Z]+;$/.test(c)&&(c=c.replace(/\s*;$/,"")),c=z(e.minifyCSS(y(c)))),c;if(v(b,a))c=_(c).split(/\s+,\s*|\s*,\s+/).map(function(a){var b=a,c="",d=a.match(/\s+([1-9][0-9]*w|[0-9]+(?:\.[0-9]+)?x)$/);if(d){b=b.slice(0,-d[0].length);var f=+d[1].slice(0,-1),g=d[1].slice(-1);1===f&&"x"===g||(c=" "+f+g)}return e.minifyURLs(b)+c}).join(", ");else if(x(a,f)&&"content"===b)c=c.replace(/\s+/g,"").replace(/[0-9]+\.[0-9]+/g,function(a){return(+a).toString()});else if(c&&e.customAttrCollapse&&e.customAttrCollapse.test(b))c=c.replace(/\n+|\r+|\s{2,}/g,"");else if("script"===a&&"type"===b)c=_(c.replace(/\s*;\s*/g,";"));else if(u(a,f,b))return c=_(c),B(e.minifyCSS(A(c)));return c}function x(a,b){if("meta"!==a)return!1;for(var c=0,d=b.length;c<d;c++)if("name"===b[c].name&&"viewport"===b[c].value)return!0}function y(a){return"*{"+a+"}"}function z(a){var b=a.match(/^\*\{([\s\S]*)\}$/);return b?b[1]:a}function A(a){return"@media "+a+"{a{top:0}}"}function B(a){var b=a.match(/^@media ([\s\S]*?)\s*{[\s\S]*}$/);return b?b[1]:a}function C(a,b){return b.processConditionalComments?a.replace(/^(\[if\s[^\]]+]>)([\s\S]*?)(<!\[endif])$/,function(a,c,d,e){return c+S(d,b,!0)+e}):a}function D(a,b,c){for(var d=0,e=c.length;d<e;d++)if("type"===c[d].name.toLowerCase()&&b.processScripts.indexOf(c[d].value)>-1)return S(a,b);return a}function E(a,b){switch(a){case"html":case"head":return!0;case"body":return!ka(b);case"colgroup":return"col"===b;case"tbody":return"tr"===b}return!1}function F(a,b){switch(b){case"colgroup":return"colgroup"===a;case"tbody":return sa(a)}return!1}function G(a,b){switch(a){case"html":case"head":case"body":case"colgroup":case"caption":return!0;case"li":case"optgroup":case"tr":return b===a;case"dt":case"dd":return la(b);case"p":return ma(b);case"rb":case"rt":case"rp":return oa(b);case"rtc":return pa(b);case"option":return qa(b);case"thead":case"tbody":return ra(b);case"tfoot":return"tbody"===b;case"td":case"th":return ta(b)}return!1}function H(a,b,c,d){var e=!c||/^\s*$/.test(c);return!!e&&("function"==typeof d.removeEmptyAttributes?d.removeEmptyAttributes(b,a):"input"===a&&"value"===b||za.test(b))}function I(a,b){for(var c=b.length-1;c>=0;c--)if(b[c].name===a)return!0;return!1}function J(a,b){switch(a){case"textarea":return!1;case"audio":case"script":case"video":if(I("src",b))return!1;break;case"iframe":if(I("src",b)||I("srcdoc",b))return!1;break;case"object":if(I("data",b))return!1;break;case"applet":if(I("code",b))return!1}return!0}function K(a){return!/^(?:script|style|pre|textarea)$/.test(a)}function L(a){return!/^(?:pre|textarea)$/.test(a)}function M(a,b,c,d){var e=d.caseSensitive?a.name:a.name.toLowerCase(),f=a.value;if(d.decodeEntities&&f&&(f=V(f,{isAttributeValue:!0})),!(d.removeRedundantAttributes&&l(c,e,f,b)||d.removeScriptTypeAttributes&&"script"===c&&"type"===e&&m(f)||d.removeStyleLinkTypeAttributes&&("style"===c||"link"===c)&&"type"===e&&o(f)||(f=w(c,e,f,d,b),d.removeEmptyAttributes&&H(c,e,f,d))))return d.decodeEntities&&f&&(f=f.replace(/&(#?[0-9a-zA-Z]+;)/g,"&amp;$1")),{attr:a,name:e,value:f}}function N(a,b,c,d,e){var f,g,h=a.name,i=a.value,k=a.attr,l=k.quote;if("undefined"==typeof i||c.removeAttributeQuotes&&!~i.indexOf(e)&&j(i))g=!d||b||/\/$/.test(i)?i+" ":i;else{if(!c.preventAttributesEscaping){if("undefined"==typeof c.quoteCharacter){var m=(i.match(/'/g)||[]).length,n=(i.match(/"/g)||[]).length;l=m<n?"'":'"'}else l="'"===c.quoteCharacter?"'":'"';i='"'===l?i.replace(/"/g,"&#34;"):i.replace(/'/g,"&#39;")}g=l+i+l,d||c.removeTagWhitespace||(g+=" ")}return"undefined"==typeof i||c.collapseBooleanAttributes&&q(h.toLowerCase(),i.toLowerCase())?(f=h,d||(f+=" ")):f=h+k.customAssign+g,k.customOpen+f+k.customClose}function O(a){return a}function P(a){["html5","includeAutoGeneratedTags"].forEach(function(b){b in a||(a[b]=!0)}),"function"!=typeof a.log&&(a.log=O);for(var b=["canCollapseWhitespace","canTrimWhitespace"],c=0,d=b.length;c<d;c++)a[b[c]]||(a[b[c]]=function(){return!1});if("ignoreCustomComments"in a||(a.ignoreCustomComments=[/^!/]),"ignoreCustomFragments"in a||(a.ignoreCustomFragments=[/<%[\s\S]*?%>/,/<\?[\s\S]*?\?>/]),a.minifyURLs||(a.minifyURLs=O),"function"!=typeof a.minifyURLs){var e=a.minifyURLs;"string"==typeof e?e={site:e}:"object"!=typeof e&&(e={}),a.minifyURLs=function(b){try{return X.relate(b,e)}catch(c){return a.log(c),b}}}if(a.minifyJS||(a.minifyJS=O),"function"!=typeof a.minifyJS){var f=a.minifyJS;"object"!=typeof f&&(f={}),f.fromString=!0,(f.output||(f.output={})).inline_script=!0,a.minifyJS=function(b,c){var d=b.match(/^\s*<!--.*/),e=d?b.slice(d[0].length).replace(/\n\s*-->\s*$/,""):b;try{return c&&(e=Aa+e+Ba),e=Z.minify(e,f).code,c&&(e=e.slice(Aa.length,-Ba.length)),/;$/.test(e)&&(e=e.slice(0,-1)),e}catch(c){return a.log(c),b}}}if(a.minifyCSS||(a.minifyCSS=O),"function"!=typeof a.minifyCSS){var g=a.minifyCSS;"object"!=typeof g&&(g={}),a.minifyCSS=function(b){b=b.replace(/(url\s*\(\s*)("|'|)(.*?)\2(\s*\))/gi,function(b,c,d,e,f){return c+d+a.minifyURLs(e)+d+f});try{return new U(g).minify(b).styles}catch(c){return a.log(c),b}}}}function Q(a){var b;do b=Math.random().toString(36).replace(/^0\.[0-9]*/,"");while(~a.indexOf(b));return b}function R(a,b,c,d){function e(a){return a.map(function(a){return b.caseSensitive?a.name:a.name.toLowerCase()})}function f(a,b){return!b||a.indexOf(b)===-1}function g(a){return f(a,c)&&f(a,d)}function h(a){var c,d;new W(a,{start:function(a,f){i&&(i[a]||(i[a]=new Y),i[a].add(e(f).filter(g)));for(var h=0,k=f.length;h<k;h++){var l=f[h];j&&"class"===(b.caseSensitive?l.name:l.name.toLowerCase())?j.add(_(l.value).split(/\s+/).filter(g)):b.processScripts&&"type"===l.name.toLowerCase()&&(c=a,d=l.value)}},end:function(){c=""},chars:function(a){b.processScripts&&Ca(c)&&b.processScripts.indexOf(d)>-1&&h(a)}})}var i=b.sortAttributes&&Object.create(null),j=b.sortClassName&&new Y,k=b.log;if(b.log=null,b.sortAttributes=!1,b.sortClassName=!1,h(S(a,b)),b.log=k,i){var l=Object.create(null);for(var m in i)l[m]=i[m].createSorter();b.sortAttributes=function(a,b){var c=l[a];if(c){var d=Object.create(null),f=e(b);f.forEach(function(a,c){(d[a]||(d[a]=[])).push(b[c])}),c.sort(f).forEach(function(a,c){b[c]=d[a].shift()})}}}if(j){var n=j.createSorter();b.sortClassName=function(a){return n.sort(a.split(/\s+/)).join(" ")}}}function S(a,b,c){function i(a){return a.replace(w,function(a,b,c){var d=X[+c];return d[1]+v+c+d[2]})}function j(a,c){return K(a)||b.canCollapseWhitespace(a,c)}function k(a,c){return L(a)||b.canTrimWhitespace(a,c)}function l(){for(var a=x.length-1;a>0&&!/^<[^\/!]/.test(x[a]);)a--;x.length=Math.max(0,a)}function m(){for(var a=x.length-1;a>0&&!/^<\//.test(x[a]);)a--;x.length=Math.max(0,a)}function o(a,c){for(var d=null;a>=0&&k(d);a--){var e=x[a],g=e.match(/^<\/([\w:-]+)>$/);if(g)d=g[1];else if(/>$/.test(e)||(x[a]=f(e,null,c,b)))break}}function q(a){var b=x.length-1;if(x.length>1){var c=x[x.length-1];/^(?:<!|$)/.test(c)&&c.indexOf(u)===-1&&b--}o(b,a)}b=b||{};var r=[];P(b),b.collapseWhitespace&&(a=e(a,b,!0,!0));var s,t,u,v,w,x=[],y="",z="",A=[],B=[],H=[],I="",O="",S=Date.now(),U=[],X=[];a=a.replace(/<!-- htmlmin:ignore -->([\s\S]*?)<!-- htmlmin:ignore -->/g,function(c,d){if(!u){u=Q(a);var e=new RegExp("^"+u+"([0-9]+)$");b.ignoreCustomComments?b.ignoreCustomComments.push(e):b.ignoreCustomComments=[e]}var f="<!--"+u+U.length+"-->";return U.push(d),f});var Y=b.ignoreCustomFragments.map(function(a){return a.source});if(Y.length){var Z=new RegExp("\\s*(?:"+Y.join("|")+")+\\s*","g");a=a.replace(Z,function(c){if(!v){v=Q(a),w=new RegExp("(\\s*)"+v+"([0-9]+)(\\s*)","g");var d=b.minifyCSS;d&&(b.minifyCSS=function(a){return d(i(a))});var e=b.minifyJS;e&&(b.minifyJS=function(a,b){return e(i(a),b)})}var f=v+X.length;return X.push(/^(\s*)[\s\S]*?(\s*)$/.exec(c)),"\t"+f+"\t"})}(b.sortAttributes&&"function"!=typeof b.sortAttributes||b.sortClassName&&"function"!=typeof b.sortClassName)&&R(a,b,u,v),new W(a,{partialMarkup:c,html5:b.html5,start:function(a,c,d,e,f){var g=a.toLowerCase();if("svg"===g){r.push(b);var h={};for(var i in b)h[i]=b[i];h.keepClosingSlash=!0,h.caseSensitive=!0,b=h}a=b.caseSensitive?a:g,z=a,s=a,ca(a)||(y=""),t=!1,A=c;var n=b.removeOptionalTags;if(n){var o=ya(a);o&&E(I,a)&&l(),I="",o&&G(O,a)&&(m(),n=!F(O,a)),O=""}b.collapseWhitespace&&(B.length||q(a),k(a,c)||B.push(a),j(a,c)||H.push(a));var p="<"+a,u=e&&b.keepClosingSlash;x.push(p),b.sortAttributes&&b.sortAttributes(a,c);for(var w=[],C=c.length,D=!0;--C>=0;){var J=M(c[C],c,a,b);J&&(w.unshift(N(J,u,b,D,v)),D=!1)}w.length>0?(x.push(" "),x.push.apply(x,w)):n&&ia(a)&&(I=a),x.push(x.pop()+(u?"/":"")+">"),f&&!b.includeAutoGeneratedTags&&(l(),I="")},end:function(a,c,d){var e=a.toLowerCase();"svg"===e&&(b=r.pop()),a=b.caseSensitive?a:e,b.collapseWhitespace&&(B.length?a===B[B.length-1]&&B.pop():q("/"+a),H.length&&a===H[H.length-1]&&H.pop());var f=!1;a===z&&(z="",f=!t),b.removeOptionalTags&&(f&&ua(I)&&l(),I="",!ya(a)||!O||xa(O)||"p"===O&&na(a)||m(),O=ja(a)?a:""),b.removeEmptyElements&&f&&J(a,c)?(l(),I="",O=""):(d&&!b.includeAutoGeneratedTags?O="":x.push("</"+a+">"),s="/"+a,ba(a)?f&&(y+="|"):y="")},chars:function(a,c,d){if(c=""===c?"comment":c,d=""===d?"comment":d,b.decodeEntities&&a&&!Ca(z)&&(a=V(a)),b.collapseWhitespace){if(!B.length){if("comment"===c){var g=x[x.length-1];if(g.indexOf(u)===-1&&(g||(c=s),x.length>1&&(!g||!b.conservativeCollapse&&/ $/.test(y)))){var h=x.length-2;x[h]=x[h].replace(/\s+$/,function(b){return a=b+a,""})}}if(c)if("/nobr"===c||"wbr"===c){if(/^\s/.test(a)){for(var i=x.length-1;i>0&&0!==x[i].lastIndexOf("<"+c);)i--;o(i-1,"br")}}else ca("/"===c.charAt(0)?c.slice(1):c)&&(a=e(a,b,/(?:^|\s)$/.test(y)));a=c||d?f(a,c,d,b):e(a,b,!0,!0),!a&&/\s$/.test(y)&&c&&"/"===c.charAt(0)&&o(x.length-1,d)}H.length||"html"===d||c&&d||(a=e(a,b,!1,!1,!0))}b.processScripts&&Ca(z)&&(a=D(a,b,A)),n(z,A)&&(a=b.minifyJS(a)),p(z,A)&&(a=b.minifyCSS(a)),b.removeOptionalTags&&a&&(("html"===I||"body"===I&&!/^\s/.test(a))&&l(),I="",(va(O)||wa(O)&&!/^\s/.test(a))&&m(),O=""),s=/^\s*$/.test(a)?c:"comment",b.decodeEntities&&a&&!Ca(z)&&(a=a.replace(/&(#?[0-9a-zA-Z]+;)/g,"&amp$1").replace(/</g,"&lt;")),y+=a,a&&(t=!0),x.push(a)},comment:function(a,c){var d=c?"<!":"<!--",e=c?">":"-->";a=g(a)?d+C(a,b)+e:b.removeComments?h(a,b)?"<!--"+a+"-->":"":d+a+e,b.removeOptionalTags&&a&&(I="",O=""),x.push(a)},doctype:function(a){x.push(b.useShortDoctype?"<!DOCTYPE html>":d(a))},customAttrAssign:b.customAttrAssign,customAttrSurround:b.customAttrSurround}),b.removeOptionalTags&&(ua(I)&&l(),O&&!xa(O)&&m()),b.collapseWhitespace&&q("br");var $=T(x,b);return w&&($=$.replace(w,function(a,c,d,f){var g=X[+d][0];return b.collapseWhitespace?("\t"!==c&&(g=c+g),"\t"!==f&&(g+=f),e(g,{preserveLineBreaks:b.preserveLineBreaks,conservativeCollapse:!b.trimCustomFragments},/^\s/.test(g),/\s$/.test(g))):g})),u&&($=$.replace(new RegExp("<!--"+u+"([0-9]+)-->","g"),function(a,b){return U[+b]})),b.log("minified in: "+(Date.now()-S)+"ms"),$}function T(a,b){var c,d=b.maxLineLength;if(d){for(var f,g=[],h="",i=0,j=a.length;i<j;i++)f=a[i],h.length+f.length<d?h+=f:(g.push(h.replace(/^\n/,"")),h=f);g.push(h),c=g.join("\n")}else c=a.join("");return b.collapseWhitespace?e(c,b,!0,!0):c}var U=a("clean-css"),V=a("he").decode,W=a("./htmlparser").HTMLParser,X=a("relateurl"),Y=a("./tokenchain"),Z=a("uglify-js"),$=a("./utils"),_=String.prototype.trim?function(a){return"string"!=typeof a?a:a.trim()}:function(a){return"string"!=typeof a?a:a.replace(/^\s+/,"").replace(/\s+$/,"")},aa=$.createMapFromString,ba=aa("a,abbr,acronym,b,bdi,bdo,big,button,cite,code,del,dfn,em,font,i,ins,kbd,mark,math,nobr,q,rt,rp,s,samp,small,span,strike,strong,sub,sup,svg,time,tt,u,var"),ca=aa("a,abbr,acronym,b,big,del,em,font,i,ins,kbd,mark,nobr,s,samp,small,span,strike,strong,sub,sup,time,tt,u,var"),da=aa("comment,img,input,wbr"),ea=$.createMap(["text/javascript","text/ecmascript","text/jscript","application/javascript","application/x-javascript","application/ecmascript"]),fa=aa("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),ga=aa("true,false"),ha=aa("img,source"),ia=aa("html,head,body,colgroup,tbody"),ja=aa("html,head,body,li,dt,dd,p,rb,rt,rtc,rp,optgroup,option,colgroup,caption,thead,tbody,tfoot,tr,td,th"),ka=aa("meta,link,script,style,template,noscript"),la=aa("dt,dd"),ma=aa("address,article,aside,blockquote,details,div,dl,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,main,menu,nav,ol,p,pre,section,table,ul"),na=aa("a,audio,del,ins,map,noscript,video"),oa=aa("rb,rt,rtc,rp"),pa=aa("rb,rtc,rp"),qa=aa("option,optgroup"),ra=aa("tbody,tfoot"),sa=aa("thead,tbody,tfoot"),ta=aa("td,th"),ua=aa("html,head,body"),va=aa("html,body"),wa=aa("head,colgroup,caption"),xa=aa("dt,thead"),ya=aa("a,abbr,acronym,address,applet,area,article,aside,audio,b,base,basefont,bdi,bdo,bgsound,big,blink,blockquote,body,br,button,canvas,caption,center,cite,code,col,colgroup,command,content,data,datalist,dd,del,details,dfn,dialog,dir,div,dl,dt,element,em,embed,fieldset,figcaption,figure,font,footer,form,frame,frameset,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,i,iframe,image,img,input,ins,isindex,kbd,keygen,label,legend,li,link,listing,main,map,mark,marquee,menu,menuitem,meta,meter,multicol,nav,nobr,noembed,noframes,noscript,object,ol,optgroup,option,output,p,param,picture,plaintext,pre,progress,q,rp,rt,rtc,ruby,s,samp,script,section,select,shadow,small,source,spacer,span,strike,strong,style,sub,summary,sup,table,tbody,td,template,textarea,tfoot,th,thead,time,title,tr,track,tt,u,ul,var,video,wbr,xmp"),za=new RegExp("^(?:class|id|style|title|lang|dir|on(?:focus|blur|change|click|dblclick|mouse(?:down|up|over|move|out)|key(?:press|down|up)))$"),Aa="!function(){",Ba="}();",Ca=aa("script,style");c.minify=function(a,b){return S(a,b)}},{"./htmlparser":166,"./tokenchain":167,"./utils":168,"clean-css":7,he:101,relateurl:125,"uglify-js":157}]},{},["html-minifier"]);
\ No newline at end of file
+require=function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b,c){"use strict";function d(a){var b=a.length;if(b%4>0)throw new Error("Invalid string. Length must be a multiple of 4");return"="===a[b-2]?2:"="===a[b-1]?1:0}function e(a){return 3*a.length/4-d(a)}function f(a){var b,c,e,f,g,h,i=a.length;g=d(a),h=new l(3*i/4-g),e=g>0?i-4:i;var j=0;for(b=0,c=0;b<e;b+=4,c+=3)f=k[a.charCodeAt(b)]<<18|k[a.charCodeAt(b+1)]<<12|k[a.charCodeAt(b+2)]<<6|k[a.charCodeAt(b+3)],h[j++]=f>>16&255,h[j++]=f>>8&255,h[j++]=255&f;return 2===g?(f=k[a.charCodeAt(b)]<<2|k[a.charCodeAt(b+1)]>>4,h[j++]=255&f):1===g&&(f=k[a.charCodeAt(b)]<<10|k[a.charCodeAt(b+1)]<<4|k[a.charCodeAt(b+2)]>>2,h[j++]=f>>8&255,h[j++]=255&f),h}function g(a){return j[a>>18&63]+j[a>>12&63]+j[a>>6&63]+j[63&a]}function h(a,b,c){for(var d,e=[],f=b;f<c;f+=3)d=(a[f]<<16)+(a[f+1]<<8)+a[f+2],e.push(g(d));return e.join("")}function i(a){for(var b,c=a.length,d=c%3,e="",f=[],g=0,i=c-d;g<i;g+=16383)f.push(h(a,g,g+16383>i?i:g+16383));return 1===d?(b=a[c-1],e+=j[b>>2],e+=j[b<<4&63],e+="=="):2===d&&(b=(a[c-2]<<8)+a[c-1],e+=j[b>>10],e+=j[b>>4&63],e+=j[b<<2&63],e+="="),f.push(e),f.join("")}c.byteLength=e,c.toByteArray=f,c.fromByteArray=i;for(var j=[],k=[],l="undefined"!=typeof Uint8Array?Uint8Array:Array,m="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",n=0,o=m.length;n<o;++n)j[n]=m[n],k[m.charCodeAt(n)]=n;k["-".charCodeAt(0)]=62,k["_".charCodeAt(0)]=63},{}],2:[function(a,b,c){},{}],3:[function(a,b,c){arguments[4][2][0].apply(c,arguments)},{dup:2}],4:[function(a,b,c){(function(b){"use strict";var d=a("buffer"),e=d.Buffer,f=d.SlowBuffer,g=d.kMaxLength||2147483647;c.alloc=function(a,b,c){if("function"==typeof e.alloc)return e.alloc(a,b,c);if("number"==typeof c)throw new TypeError("encoding must not be number");if("number"!=typeof a)throw new TypeError("size must be a number");if(a>g)throw new RangeError("size is too large");var d=c,f=b;void 0===f&&(d=void 0,f=0);var h=new e(a);if("string"==typeof f)for(var i=new e(f,d),j=i.length,k=-1;++k<a;)h[k]=i[k%j];else h.fill(f);return h},c.allocUnsafe=function(a){if("function"==typeof e.allocUnsafe)return e.allocUnsafe(a);if("number"!=typeof a)throw new TypeError("size must be a number");if(a>g)throw new RangeError("size is too large");return new e(a)},c.from=function(a,c,d){if("function"==typeof e.from&&(!b.Uint8Array||Uint8Array.from!==e.from))return e.from(a,c,d);if("number"==typeof a)throw new TypeError('"value" argument must not be a number');if("string"==typeof a)return new e(a,c);if("undefined"!=typeof ArrayBuffer&&a instanceof ArrayBuffer){var f=c;if(1===arguments.length)return new e(a);void 0===f&&(f=0);var g=d;if(void 0===g&&(g=a.byteLength-f),f>=a.byteLength)throw new RangeError("'offset' is out of bounds");if(g>a.byteLength-f)throw new RangeError("'length' is out of bounds");return new e(a.slice(f,f+g))}if(e.isBuffer(a)){var h=new e(a.length);return a.copy(h,0,0,a.length),h}if(a){if(Array.isArray(a)||"undefined"!=typeof ArrayBuffer&&a.buffer instanceof ArrayBuffer||"length"in a)return new e(a);if("Buffer"===a.type&&Array.isArray(a.data))return new e(a.data)}throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")},c.allocUnsafeSlow=function(a){if("function"==typeof e.allocUnsafeSlow)return e.allocUnsafeSlow(a);if("number"!=typeof a)throw new TypeError("size must be a number");if(a>=g)throw new RangeError("size is too large");return new f(a)}}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{buffer:5}],5:[function(a,b,c){(function(b){"use strict";function d(){return f.TYPED_ARRAY_SUPPORT?2147483647:1073741823}function e(a,b){if(d()<b)throw new RangeError("Invalid typed array length");return f.TYPED_ARRAY_SUPPORT?(a=new Uint8Array(b),a.__proto__=f.prototype):(null===a&&(a=new f(b)),a.length=b),a}function f(a,b,c){if(!(f.TYPED_ARRAY_SUPPORT||this instanceof f))return new f(a,b,c);if("number"==typeof a){if("string"==typeof b)throw new Error("If encoding is specified then the first argument must be a string");return j(this,a)}return g(this,a,b,c)}function g(a,b,c,d){if("number"==typeof b)throw new TypeError('"value" argument must not be a number');return"undefined"!=typeof ArrayBuffer&&b instanceof ArrayBuffer?m(a,b,c,d):"string"==typeof b?k(a,b,c):n(a,b)}function h(a){if("number"!=typeof a)throw new TypeError('"size" argument must be a number');if(a<0)throw new RangeError('"size" argument must not be negative')}function i(a,b,c,d){return h(b),b<=0?e(a,b):void 0!==c?"string"==typeof d?e(a,b).fill(c,d):e(a,b).fill(c):e(a,b)}function j(a,b){if(h(b),a=e(a,b<0?0:0|o(b)),!f.TYPED_ARRAY_SUPPORT)for(var c=0;c<b;++c)a[c]=0;return a}function k(a,b,c){if("string"==typeof c&&""!==c||(c="utf8"),!f.isEncoding(c))throw new TypeError('"encoding" must be a valid string encoding');var d=0|q(b,c);a=e(a,d);var g=a.write(b,c);return g!==d&&(a=a.slice(0,g)),a}function l(a,b){var c=b.length<0?0:0|o(b.length);a=e(a,c);for(var d=0;d<c;d+=1)a[d]=255&b[d];return a}function m(a,b,c,d){if(b.byteLength,c<0||b.byteLength<c)throw new RangeError("'offset' is out of bounds");if(b.byteLength<c+(d||0))throw new RangeError("'length' is out of bounds");return b=void 0===c&&void 0===d?new Uint8Array(b):void 0===d?new Uint8Array(b,c):new Uint8Array(b,c,d),f.TYPED_ARRAY_SUPPORT?(a=b,a.__proto__=f.prototype):a=l(a,b),a}function n(a,b){if(f.isBuffer(b)){var c=0|o(b.length);return a=e(a,c),0===a.length?a:(b.copy(a,0,0,c),a)}if(b){if("undefined"!=typeof ArrayBuffer&&b.buffer instanceof ArrayBuffer||"length"in b)return"number"!=typeof b.length||X(b.length)?e(a,0):l(a,b);if("Buffer"===b.type&&$(b.data))return l(a,b.data)}throw new TypeError("First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.")}function o(a){if(a>=d())throw new RangeError("Attempt to allocate Buffer larger than maximum size: 0x"+d().toString(16)+" bytes");return 0|a}function p(a){return+a!=a&&(a=0),f.alloc(+a)}function q(a,b){if(f.isBuffer(a))return a.length;if("undefined"!=typeof ArrayBuffer&&"function"==typeof ArrayBuffer.isView&&(ArrayBuffer.isView(a)||a instanceof ArrayBuffer))return a.byteLength;"string"!=typeof a&&(a=""+a);var c=a.length;if(0===c)return 0;for(var d=!1;;)switch(b){case"ascii":case"latin1":case"binary":return c;case"utf8":case"utf-8":case void 0:return S(a).length;case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return 2*c;case"hex":return c>>>1;case"base64":return V(a).length;default:if(d)return S(a).length;b=(""+b).toLowerCase(),d=!0}}function r(a,b,c){var d=!1;if((void 0===b||b<0)&&(b=0),b>this.length)return"";if((void 0===c||c>this.length)&&(c=this.length),c<=0)return"";if(c>>>=0,b>>>=0,c<=b)return"";for(a||(a="utf8");;)switch(a){case"hex":return G(this,b,c);case"utf8":case"utf-8":return C(this,b,c);case"ascii":return E(this,b,c);case"latin1":case"binary":return F(this,b,c);case"base64":return B(this,b,c);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return H(this,b,c);default:if(d)throw new TypeError("Unknown encoding: "+a);a=(a+"").toLowerCase(),d=!0}}function s(a,b,c){var d=a[b];a[b]=a[c],a[c]=d}function t(a,b,c,d,e){if(0===a.length)return-1;if("string"==typeof c?(d=c,c=0):c>2147483647?c=2147483647:c<-2147483648&&(c=-2147483648),c=+c,isNaN(c)&&(c=e?0:a.length-1),c<0&&(c=a.length+c),c>=a.length){if(e)return-1;c=a.length-1}else if(c<0){if(!e)return-1;c=0}if("string"==typeof b&&(b=f.from(b,d)),f.isBuffer(b))return 0===b.length?-1:u(a,b,c,d,e);if("number"==typeof b)return b&=255,f.TYPED_ARRAY_SUPPORT&&"function"==typeof Uint8Array.prototype.indexOf?e?Uint8Array.prototype.indexOf.call(a,b,c):Uint8Array.prototype.lastIndexOf.call(a,b,c):u(a,[b],c,d,e);throw new TypeError("val must be string, number or Buffer")}function u(a,b,c,d,e){function f(a,b){return 1===g?a[b]:a.readUInt16BE(b*g)}var g=1,h=a.length,i=b.length;if(void 0!==d&&("ucs2"===(d=String(d).toLowerCase())||"ucs-2"===d||"utf16le"===d||"utf-16le"===d)){if(a.length<2||b.length<2)return-1;g=2,h/=2,i/=2,c/=2}var j;if(e){var k=-1;for(j=c;j<h;j++)if(f(a,j)===f(b,k===-1?0:j-k)){if(k===-1&&(k=j),j-k+1===i)return k*g}else k!==-1&&(j-=j-k),k=-1}else for(c+i>h&&(c=h-i),j=c;j>=0;j--){for(var l=!0,m=0;m<i;m++)if(f(a,j+m)!==f(b,m)){l=!1;break}if(l)return j}return-1}function v(a,b,c,d){c=Number(c)||0;var e=a.length-c;d?(d=Number(d))>e&&(d=e):d=e;var f=b.length;if(f%2!=0)throw new TypeError("Invalid hex string");d>f/2&&(d=f/2);for(var g=0;g<d;++g){var h=parseInt(b.substr(2*g,2),16);if(isNaN(h))return g;a[c+g]=h}return g}function w(a,b,c,d){return W(S(b,a.length-c),a,c,d)}function x(a,b,c,d){return W(T(b),a,c,d)}function y(a,b,c,d){return x(a,b,c,d)}function z(a,b,c,d){return W(V(b),a,c,d)}function A(a,b,c,d){return W(U(b,a.length-c),a,c,d)}function B(a,b,c){return 0===b&&c===a.length?Y.fromByteArray(a):Y.fromByteArray(a.slice(b,c))}function C(a,b,c){c=Math.min(a.length,c);for(var d=[],e=b;e<c;){var f=a[e],g=null,h=f>239?4:f>223?3:f>191?2:1;if(e+h<=c){var i,j,k,l;switch(h){case 1:f<128&&(g=f);break;case 2:i=a[e+1],128==(192&i)&&(l=(31&f)<<6|63&i)>127&&(g=l);break;case 3:i=a[e+1],j=a[e+2],128==(192&i)&&128==(192&j)&&(l=(15&f)<<12|(63&i)<<6|63&j)>2047&&(l<55296||l>57343)&&(g=l);break;case 4:i=a[e+1],j=a[e+2],k=a[e+3],128==(192&i)&&128==(192&j)&&128==(192&k)&&(l=(15&f)<<18|(63&i)<<12|(63&j)<<6|63&k)>65535&&l<1114112&&(g=l)}}null===g?(g=65533,h=1):g>65535&&(g-=65536,d.push(g>>>10&1023|55296),g=56320|1023&g),d.push(g),e+=h}return D(d)}function D(a){var b=a.length;if(b<=_)return String.fromCharCode.apply(String,a);for(var c="",d=0;d<b;)c+=String.fromCharCode.apply(String,a.slice(d,d+=_));return c}function E(a,b,c){var d="";c=Math.min(a.length,c);for(var e=b;e<c;++e)d+=String.fromCharCode(127&a[e]);return d}function F(a,b,c){var d="";c=Math.min(a.length,c);for(var e=b;e<c;++e)d+=String.fromCharCode(a[e]);return d}function G(a,b,c){var d=a.length;(!b||b<0)&&(b=0),(!c||c<0||c>d)&&(c=d);for(var e="",f=b;f<c;++f)e+=R(a[f]);return e}function H(a,b,c){for(var d=a.slice(b,c),e="",f=0;f<d.length;f+=2)e+=String.fromCharCode(d[f]+256*d[f+1]);return e}function I(a,b,c){if(a%1!=0||a<0)throw new RangeError("offset is not uint");if(a+b>c)throw new RangeError("Trying to access beyond buffer length")}function J(a,b,c,d,e,g){if(!f.isBuffer(a))throw new TypeError('"buffer" argument must be a Buffer instance');if(b>e||b<g)throw new RangeError('"value" argument is out of bounds');if(c+d>a.length)throw new RangeError("Index out of range")}function K(a,b,c,d){b<0&&(b=65535+b+1);for(var e=0,f=Math.min(a.length-c,2);e<f;++e)a[c+e]=(b&255<<8*(d?e:1-e))>>>8*(d?e:1-e)}function L(a,b,c,d){b<0&&(b=4294967295+b+1);for(var e=0,f=Math.min(a.length-c,4);e<f;++e)a[c+e]=b>>>8*(d?e:3-e)&255}function M(a,b,c,d,e,f){if(c+d>a.length)throw new RangeError("Index out of range");if(c<0)throw new RangeError("Index out of range")}function N(a,b,c,d,e){return e||M(a,b,c,4,3.4028234663852886e38,-3.4028234663852886e38),Z.write(a,b,c,d,23,4),c+4}function O(a,b,c,d,e){return e||M(a,b,c,8,1.7976931348623157e308,-1.7976931348623157e308),Z.write(a,b,c,d,52,8),c+8}function P(a){if(a=Q(a).replace(aa,""),a.length<2)return"";for(;a.length%4!=0;)a+="=";return a}function Q(a){return a.trim?a.trim():a.replace(/^\s+|\s+$/g,"")}function R(a){return a<16?"0"+a.toString(16):a.toString(16)}function S(a,b){b=b||1/0;for(var c,d=a.length,e=null,f=[],g=0;g<d;++g){if((c=a.charCodeAt(g))>55295&&c<57344){if(!e){if(c>56319){(b-=3)>-1&&f.push(239,191,189);continue}if(g+1===d){(b-=3)>-1&&f.push(239,191,189);continue}e=c;continue}if(c<56320){(b-=3)>-1&&f.push(239,191,189),e=c;continue}c=65536+(e-55296<<10|c-56320)}else e&&(b-=3)>-1&&f.push(239,191,189);if(e=null,c<128){if((b-=1)<0)break;f.push(c)}else if(c<2048){if((b-=2)<0)break;f.push(c>>6|192,63&c|128)}else if(c<65536){if((b-=3)<0)break;f.push(c>>12|224,c>>6&63|128,63&c|128)}else{if(!(c<1114112))throw new Error("Invalid code point");if((b-=4)<0)break;f.push(c>>18|240,c>>12&63|128,c>>6&63|128,63&c|128)}}return f}function T(a){for(var b=[],c=0;c<a.length;++c)b.push(255&a.charCodeAt(c));return b}function U(a,b){for(var c,d,e,f=[],g=0;g<a.length&&!((b-=2)<0);++g)c=a.charCodeAt(g),d=c>>8,e=c%256,f.push(e),f.push(d);return f}function V(a){return Y.toByteArray(P(a))}function W(a,b,c,d){for(var e=0;e<d&&!(e+c>=b.length||e>=a.length);++e)b[e+c]=a[e];return e}function X(a){return a!==a}var Y=a("base64-js"),Z=a("ieee754"),$=a("isarray");c.Buffer=f,c.SlowBuffer=p,c.INSPECT_MAX_BYTES=50,f.TYPED_ARRAY_SUPPORT=void 0!==b.TYPED_ARRAY_SUPPORT?b.TYPED_ARRAY_SUPPORT:function(){try{var a=new Uint8Array(1);return a.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===a.foo()&&"function"==typeof a.subarray&&0===a.subarray(1,1).byteLength}catch(a){return!1}}(),c.kMaxLength=d(),f.poolSize=8192,f._augment=function(a){return a.__proto__=f.prototype,a},f.from=function(a,b,c){return g(null,a,b,c)},f.TYPED_ARRAY_SUPPORT&&(f.prototype.__proto__=Uint8Array.prototype,f.__proto__=Uint8Array,"undefined"!=typeof Symbol&&Symbol.species&&f[Symbol.species]===f&&Object.defineProperty(f,Symbol.species,{value:null,configurable:!0})),f.alloc=function(a,b,c){return i(null,a,b,c)},f.allocUnsafe=function(a){return j(null,a)},f.allocUnsafeSlow=function(a){return j(null,a)},f.isBuffer=function(a){return!(null==a||!a._isBuffer)},f.compare=function(a,b){if(!f.isBuffer(a)||!f.isBuffer(b))throw new TypeError("Arguments must be Buffers");if(a===b)return 0;for(var c=a.length,d=b.length,e=0,g=Math.min(c,d);e<g;++e)if(a[e]!==b[e]){c=a[e],d=b[e];break}return c<d?-1:d<c?1:0},f.isEncoding=function(a){switch(String(a).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}},f.concat=function(a,b){if(!$(a))throw new TypeError('"list" argument must be an Array of Buffers');if(0===a.length)return f.alloc(0);var c;if(void 0===b)for(b=0,c=0;c<a.length;++c)b+=a[c].length;var d=f.allocUnsafe(b),e=0;for(c=0;c<a.length;++c){var g=a[c];if(!f.isBuffer(g))throw new TypeError('"list" argument must be an Array of Buffers');g.copy(d,e),e+=g.length}return d},f.byteLength=q,f.prototype._isBuffer=!0,f.prototype.swap16=function(){var a=this.length;if(a%2!=0)throw new RangeError("Buffer size must be a multiple of 16-bits");for(var b=0;b<a;b+=2)s(this,b,b+1);return this},f.prototype.swap32=function(){var a=this.length;if(a%4!=0)throw new RangeError("Buffer size must be a multiple of 32-bits");for(var b=0;b<a;b+=4)s(this,b,b+3),s(this,b+1,b+2);return this},f.prototype.swap64=function(){var a=this.length;if(a%8!=0)throw new RangeError("Buffer size must be a multiple of 64-bits");for(var b=0;b<a;b+=8)s(this,b,b+7),s(this,b+1,b+6),s(this,b+2,b+5),s(this,b+3,b+4);return this},f.prototype.toString=function(){var a=0|this.length;return 0===a?"":0===arguments.length?C(this,0,a):r.apply(this,arguments)},f.prototype.equals=function(a){if(!f.isBuffer(a))throw new TypeError("Argument must be a Buffer");return this===a||0===f.compare(this,a)},f.prototype.inspect=function(){var a="",b=c.INSPECT_MAX_BYTES;return this.length>0&&(a=this.toString("hex",0,b).match(/.{2}/g).join(" "),this.length>b&&(a+=" ... ")),"<Buffer "+a+">"},f.prototype.compare=function(a,b,c,d,e){if(!f.isBuffer(a))throw new TypeError("Argument must be a Buffer");if(void 0===b&&(b=0),void 0===c&&(c=a?a.length:0),void 0===d&&(d=0),void 0===e&&(e=this.length),b<0||c>a.length||d<0||e>this.length)throw new RangeError("out of range index");if(d>=e&&b>=c)return 0;if(d>=e)return-1;if(b>=c)return 1;if(b>>>=0,c>>>=0,d>>>=0,e>>>=0,this===a)return 0;for(var g=e-d,h=c-b,i=Math.min(g,h),j=this.slice(d,e),k=a.slice(b,c),l=0;l<i;++l)if(j[l]!==k[l]){g=j[l],h=k[l];break}return g<h?-1:h<g?1:0},f.prototype.includes=function(a,b,c){return this.indexOf(a,b,c)!==-1},f.prototype.indexOf=function(a,b,c){return t(this,a,b,c,!0)},f.prototype.lastIndexOf=function(a,b,c){return t(this,a,b,c,!1)},f.prototype.write=function(a,b,c,d){if(void 0===b)d="utf8",c=this.length,b=0;else if(void 0===c&&"string"==typeof b)d=b,c=this.length,b=0;else{if(!isFinite(b))throw new Error("Buffer.write(string, encoding, offset[, length]) is no longer supported");b|=0,isFinite(c)?(c|=0,void 0===d&&(d="utf8")):(d=c,c=void 0)}var e=this.length-b;if((void 0===c||c>e)&&(c=e),a.length>0&&(c<0||b<0)||b>this.length)throw new RangeError("Attempt to write outside buffer bounds");d||(d="utf8");for(var f=!1;;)switch(d){case"hex":return v(this,a,b,c);case"utf8":case"utf-8":return w(this,a,b,c);case"ascii":return x(this,a,b,c);case"latin1":case"binary":return y(this,a,b,c);case"base64":return z(this,a,b,c);case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":return A(this,a,b,c);default:if(f)throw new TypeError("Unknown encoding: "+d);d=(""+d).toLowerCase(),f=!0}},f.prototype.toJSON=function(){return{type:"Buffer",data:Array.prototype.slice.call(this._arr||this,0)}};var _=4096;f.prototype.slice=function(a,b){var c=this.length;a=~~a,b=void 0===b?c:~~b,a<0?(a+=c)<0&&(a=0):a>c&&(a=c),b<0?(b+=c)<0&&(b=0):b>c&&(b=c),b<a&&(b=a);var d;if(f.TYPED_ARRAY_SUPPORT)d=this.subarray(a,b),d.__proto__=f.prototype;else{var e=b-a;d=new f(e,void 0);for(var g=0;g<e;++g)d[g]=this[g+a]}return d},f.prototype.readUIntLE=function(a,b,c){a|=0,b|=0,c||I(a,b,this.length);for(var d=this[a],e=1,f=0;++f<b&&(e*=256);)d+=this[a+f]*e;return d},f.prototype.readUIntBE=function(a,b,c){a|=0,b|=0,c||I(a,b,this.length);for(var d=this[a+--b],e=1;b>0&&(e*=256);)d+=this[a+--b]*e;return d},f.prototype.readUInt8=function(a,b){return b||I(a,1,this.length),this[a]},f.prototype.readUInt16LE=function(a,b){return b||I(a,2,this.length),this[a]|this[a+1]<<8},f.prototype.readUInt16BE=function(a,b){return b||I(a,2,this.length),this[a]<<8|this[a+1]},f.prototype.readUInt32LE=function(a,b){return b||I(a,4,this.length),(this[a]|this[a+1]<<8|this[a+2]<<16)+16777216*this[a+3]},f.prototype.readUInt32BE=function(a,b){return b||I(a,4,this.length),16777216*this[a]+(this[a+1]<<16|this[a+2]<<8|this[a+3])},f.prototype.readIntLE=function(a,b,c){a|=0,b|=0,c||I(a,b,this.length);for(var d=this[a],e=1,f=0;++f<b&&(e*=256);)d+=this[a+f]*e;return e*=128,d>=e&&(d-=Math.pow(2,8*b)),d},f.prototype.readIntBE=function(a,b,c){a|=0,b|=0,c||I(a,b,this.length);for(var d=b,e=1,f=this[a+--d];d>0&&(e*=256);)f+=this[a+--d]*e;return e*=128,f>=e&&(f-=Math.pow(2,8*b)),f},f.prototype.readInt8=function(a,b){return b||I(a,1,this.length),128&this[a]?(255-this[a]+1)*-1:this[a]},f.prototype.readInt16LE=function(a,b){b||I(a,2,this.length);var c=this[a]|this[a+1]<<8;return 32768&c?4294901760|c:c},f.prototype.readInt16BE=function(a,b){b||I(a,2,this.length);var c=this[a+1]|this[a]<<8;return 32768&c?4294901760|c:c},f.prototype.readInt32LE=function(a,b){return b||I(a,4,this.length),this[a]|this[a+1]<<8|this[a+2]<<16|this[a+3]<<24},f.prototype.readInt32BE=function(a,b){return b||I(a,4,this.length),this[a]<<24|this[a+1]<<16|this[a+2]<<8|this[a+3]},f.prototype.readFloatLE=function(a,b){return b||I(a,4,this.length),Z.read(this,a,!0,23,4)},f.prototype.readFloatBE=function(a,b){return b||I(a,4,this.length),Z.read(this,a,!1,23,4)},f.prototype.readDoubleLE=function(a,b){return b||I(a,8,this.length),Z.read(this,a,!0,52,8)},f.prototype.readDoubleBE=function(a,b){return b||I(a,8,this.length),Z.read(this,a,!1,52,8)},f.prototype.writeUIntLE=function(a,b,c,d){if(a=+a,b|=0,c|=0,!d){J(this,a,b,c,Math.pow(2,8*c)-1,0)}var e=1,f=0;for(this[b]=255&a;++f<c&&(e*=256);)this[b+f]=a/e&255;return b+c},f.prototype.writeUIntBE=function(a,b,c,d){if(a=+a,b|=0,c|=0,!d){J(this,a,b,c,Math.pow(2,8*c)-1,0)}var e=c-1,f=1;for(this[b+e]=255&a;--e>=0&&(f*=256);)this[b+e]=a/f&255;return b+c},f.prototype.writeUInt8=function(a,b,c){return a=+a,b|=0,c||J(this,a,b,1,255,0),f.TYPED_ARRAY_SUPPORT||(a=Math.floor(a)),this[b]=255&a,b+1},f.prototype.writeUInt16LE=function(a,b,c){return a=+a,b|=0,c||J(this,a,b,2,65535,0),f.TYPED_ARRAY_SUPPORT?(this[b]=255&a,this[b+1]=a>>>8):K(this,a,b,!0),b+2},f.prototype.writeUInt16BE=function(a,b,c){return a=+a,b|=0,c||J(this,a,b,2,65535,0),f.TYPED_ARRAY_SUPPORT?(this[b]=a>>>8,this[b+1]=255&a):K(this,a,b,!1),b+2},f.prototype.writeUInt32LE=function(a,b,c){return a=+a,b|=0,c||J(this,a,b,4,4294967295,0),f.TYPED_ARRAY_SUPPORT?(this[b+3]=a>>>24,this[b+2]=a>>>16,this[b+1]=a>>>8,this[b]=255&a):L(this,a,b,!0),b+4},f.prototype.writeUInt32BE=function(a,b,c){return a=+a,b|=0,c||J(this,a,b,4,4294967295,0),f.TYPED_ARRAY_SUPPORT?(this[b]=a>>>24,this[b+1]=a>>>16,this[b+2]=a>>>8,this[b+3]=255&a):L(this,a,b,!1),b+4},f.prototype.writeIntLE=function(a,b,c,d){if(a=+a,b|=0,!d){var e=Math.pow(2,8*c-1);J(this,a,b,c,e-1,-e)}var f=0,g=1,h=0;for(this[b]=255&a;++f<c&&(g*=256);)a<0&&0===h&&0!==this[b+f-1]&&(h=1),this[b+f]=(a/g>>0)-h&255;return b+c},f.prototype.writeIntBE=function(a,b,c,d){if(a=+a,b|=0,!d){var e=Math.pow(2,8*c-1);J(this,a,b,c,e-1,-e)}var f=c-1,g=1,h=0;for(this[b+f]=255&a;--f>=0&&(g*=256);)a<0&&0===h&&0!==this[b+f+1]&&(h=1),this[b+f]=(a/g>>0)-h&255;return b+c},f.prototype.writeInt8=function(a,b,c){return a=+a,b|=0,c||J(this,a,b,1,127,-128),f.TYPED_ARRAY_SUPPORT||(a=Math.floor(a)),a<0&&(a=255+a+1),this[b]=255&a,b+1},f.prototype.writeInt16LE=function(a,b,c){return a=+a,b|=0,c||J(this,a,b,2,32767,-32768),f.TYPED_ARRAY_SUPPORT?(this[b]=255&a,this[b+1]=a>>>8):K(this,a,b,!0),b+2},f.prototype.writeInt16BE=function(a,b,c){return a=+a,b|=0,c||J(this,a,b,2,32767,-32768),f.TYPED_ARRAY_SUPPORT?(this[b]=a>>>8,this[b+1]=255&a):K(this,a,b,!1),b+2},f.prototype.writeInt32LE=function(a,b,c){return a=+a,b|=0,c||J(this,a,b,4,2147483647,-2147483648),f.TYPED_ARRAY_SUPPORT?(this[b]=255&a,this[b+1]=a>>>8,this[b+2]=a>>>16,this[b+3]=a>>>24):L(this,a,b,!0),b+4},f.prototype.writeInt32BE=function(a,b,c){return a=+a,b|=0,c||J(this,a,b,4,2147483647,-2147483648),a<0&&(a=4294967295+a+1),f.TYPED_ARRAY_SUPPORT?(this[b]=a>>>24,this[b+1]=a>>>16,this[b+2]=a>>>8,this[b+3]=255&a):L(this,a,b,!1),b+4},f.prototype.writeFloatLE=function(a,b,c){return N(this,a,b,!0,c)},f.prototype.writeFloatBE=function(a,b,c){return N(this,a,b,!1,c)},f.prototype.writeDoubleLE=function(a,b,c){return O(this,a,b,!0,c)},f.prototype.writeDoubleBE=function(a,b,c){return O(this,a,b,!1,c)},f.prototype.copy=function(a,b,c,d){if(c||(c=0),d||0===d||(d=this.length),b>=a.length&&(b=a.length),b||(b=0),d>0&&d<c&&(d=c),d===c)return 0;if(0===a.length||0===this.length)return 0;if(b<0)throw new RangeError("targetStart out of bounds");if(c<0||c>=this.length)throw new RangeError("sourceStart out of bounds");if(d<0)throw new RangeError("sourceEnd out of bounds");d>this.length&&(d=this.length),a.length-b<d-c&&(d=a.length-b+c);var e,g=d-c;if(this===a&&c<b&&b<d)for(e=g-1;e>=0;--e)a[e+b]=this[e+c];else if(g<1e3||!f.TYPED_ARRAY_SUPPORT)for(e=0;e<g;++e)a[e+b]=this[e+c];else Uint8Array.prototype.set.call(a,this.subarray(c,c+g),b);return g},f.prototype.fill=function(a,b,c,d){if("string"==typeof a){if("string"==typeof b?(d=b,b=0,c=this.length):"string"==typeof c&&(d=c,c=this.length),1===a.length){var e=a.charCodeAt(0);e<256&&(a=e)}if(void 0!==d&&"string"!=typeof d)throw new TypeError("encoding must be a string");if("string"==typeof d&&!f.isEncoding(d))throw new TypeError("Unknown encoding: "+d)}else"number"==typeof a&&(a&=255);if(b<0||this.length<b||this.length<c)throw new RangeError("Out of range index");if(c<=b)return this;b>>>=0,c=void 0===c?this.length:c>>>0,a||(a=0);var g;if("number"==typeof a)for(g=b;g<c;++g)this[g]=a;else{var h=f.isBuffer(a)?a:S(new f(a,d).toString()),i=h.length;for(g=0;g<c-b;++g)this[g+b]=h[g%i]}return this};var aa=/[^+\/0-9A-Za-z-_]/g}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"base64-js":1,ieee754:103,isarray:106}],6:[function(a,b,c){b.exports={100:"Continue",101:"Switching Protocols",102:"Processing",200:"OK",201:"Created",202:"Accepted",203:"Non-Authoritative Information",204:"No Content",205:"Reset Content",206:"Partial Content",207:"Multi-Status",208:"Already Reported",226:"IM Used",300:"Multiple Choices",301:"Moved Permanently",302:"Found",303:"See Other",304:"Not Modified",305:"Use Proxy",307:"Temporary Redirect",308:"Permanent Redirect",400:"Bad Request",401:"Unauthorized",402:"Payment Required",403:"Forbidden",404:"Not Found",405:"Method Not Allowed",406:"Not Acceptable",407:"Proxy Authentication Required",408:"Request Timeout",409:"Conflict",410:"Gone",411:"Length Required",412:"Precondition Failed",413:"Payload Too Large",414:"URI Too Long",415:"Unsupported Media Type",416:"Range Not Satisfiable",417:"Expectation Failed",418:"I'm a teapot",421:"Misdirected Request",422:"Unprocessable Entity",423:"Locked",424:"Failed Dependency",425:"Unordered Collection",426:"Upgrade Required",428:"Precondition Required",429:"Too Many Requests",431:"Request Header Fields Too Large",451:"Unavailable For Legal Reasons",500:"Internal Server Error",501:"Not Implemented",502:"Bad Gateway",503:"Service Unavailable",504:"Gateway Timeout",505:"HTTP Version Not Supported",506:"Variant Also Negotiates",507:"Insufficient Storage",508:"Loop Detected",509:"Bandwidth Limit Exceeded",510:"Not Extended",511:"Network Authentication Required"}},{}],7:[function(a,b,c){b.exports=a("./lib/clean")},{"./lib/clean":8}],8:[function(a,b,c){(function(c){function d(a,b,c,d){var h="function"!=typeof c?c:null,i="function"==typeof d?d:"function"==typeof c?c:null,j={stats:{efficiency:0,minifiedSize:0,originalSize:0,startedAt:Date.now(),timeSpent:0},cache:{specificity:{}},errors:[],inlinedStylesheets:[],inputSourceMapTracker:v(),localOnly:!i,options:b,source:null,sourcesContent:{},validator:l(b.compatibility),warnings:[]};return h&&j.inputSourceMapTracker.track(void 0,h),e(j.localOnly)(function(){return w(a,j,function(a){var b=j.options.sourceMap?y:x,c=f(a,j),d=b(c,j),e=g(d,j);return i?i(j.errors.length>0?j.errors:null,e):e})})}function e(a){return a?function(a){return a()}:c.nextTick}function f(a,b){var c;return c=i(a,b),c=r.One in b.options.level?j(a,b):a,c=r.Two in b.options.level?k(a,b,!0):c}function g(a,b){return a.stats=h(a.styles,b),a.errors=b.errors,a.inlinedStylesheets=b.inlinedStylesheets,a.warnings=b.warnings,a}function h(a,b){var c=Date.now(),d=c-b.stats.startedAt;return delete b.stats.startedAt,b.stats.timeSpent=d,b.stats.efficiency=1-a.length/b.stats.originalSize,b.stats.minifiedSize=a.length,b.stats}var i=a("./optimizer/level-0/optimize"),j=a("./optimizer/level-1/optimize"),k=a("./optimizer/level-2/optimize"),l=a("./optimizer/validator"),m=a("./options/compatibility"),n=a("./options/format").formatFrom,o=a("./options/inline"),p=a("./options/inline-request"),q=a("./options/inline-timeout"),r=a("./options/optimization-level").OptimizationLevel,s=a("./options/optimization-level").optimizationLevelFrom,t=a("./options/rebase"),u=a("./options/rebase-to"),v=a("./reader/input-source-map-tracker"),w=a("./reader/read-sources"),x=a("./writer/simple"),y=a("./writer/source-maps");(b.exports=function(a){a=a||{},this.options={compatibility:m(a.compatibility),format:n(a.format),inline:o(a.inline),inlineRequest:p(a.inlineRequest),inlineTimeout:q(a.inlineTimeout),level:s(a.level),rebase:t(a.rebase),rebaseTo:u(a.rebaseTo),returnPromise:!!a.returnPromise,sourceMap:!!a.sourceMap,sourceMapInlineSources:!!a.sourceMapInlineSources}}).prototype.minify=function(a,b,c){var e=this.options;return e.returnPromise?new Promise(function(c,f){d(a,e,b,function(a,b){return a?f(a):c(b)})}):d(a,e,b,c)}}).call(this,a("_process"))},{"./optimizer/level-0/optimize":10,"./optimizer/level-1/optimize":11,"./optimizer/level-2/optimize":30,"./optimizer/validator":56,"./options/compatibility":58,"./options/format":59,"./options/inline":62,"./options/inline-request":60,"./options/inline-timeout":61,"./options/optimization-level":63,"./options/rebase":65,"./options/rebase-to":64,"./reader/input-source-map-tracker":69,"./reader/read-sources":75,"./writer/simple":97,"./writer/source-maps":98,_process:111}],9:[function(a,b,c){var d={ASTERISK:"asterisk",BANG:"bang",BACKSLASH:"backslash",UNDERSCORE:"underscore"};b.exports=d},{}],10:[function(a,b,c){function d(a){return a}b.exports=d},{}],11:[function(a,b,c){function d(a){return a&&"-"==a[1][0]&&parseFloat(a[1])<0}function e(a){return ha.test(a)}function f(a){return ja.test(a)}function g(a){return a.replace(ja,"url(").replace(/\\?\n|\\?\r\n/g,"")}function h(a){var b=a.value;1==b.length&&"none"==b[0][1]&&(b[0][1]="0 0"),1==b.length&&"transparent"==b[0][1]&&(b[0][1]="0 0")}function i(a){var b,c=a.value;3==c.length&&"/"==c[1][1]&&c[0][1]==c[2][1]?b=1:5==c.length&&"/"==c[2][1]&&c[0][1]==c[3][1]&&c[1][1]==c[4][1]?b=2:7==c.length&&"/"==c[3][1]&&c[0][1]==c[4][1]&&c[1][1]==c[5][1]&&c[2][1]==c[6][1]?b=3:9==c.length&&"/"==c[4][1]&&c[0][1]==c[5][1]&&c[1][1]==c[6][1]&&c[2][1]==c[7][1]&&c[3][1]==c[8][1]&&(b=4),b&&(a.value.splice(b),a.dirty=!0)}function j(a,b,c){return b.indexOf("#")===-1&&b.indexOf("rgb")==-1&&b.indexOf("hsl")==-1?I(b):(b=b.replace(/rgb\((\-?\d+),(\-?\d+),(\-?\d+)\)/g,function(a,b,c,d){return K(b,c,d)}).replace(/hsl\((-?\d+),(-?\d+)%?,(-?\d+)%?\)/g,function(a,b,c,d){return J(b,c,d)}).replace(/(^|[^='"])#([0-9a-f]{6})/gi,function(a,b,c){return c[0]==c[1]&&c[2]==c[3]&&c[4]==c[5]?(b+"#"+c[0]+c[2]+c[4]).toLowerCase():(b+"#"+c).toLowerCase()}).replace(/(^|[^='"])#([0-9a-f]{3})/gi,function(a,b,c){return b+"#"+c.toLowerCase()}).replace(/(rgb|rgba|hsl|hsla)\(([^\)]+)\)/g,function(a,b,c){var d=c.split(",");return"hsl"==b&&3==d.length||"hsla"==b&&4==d.length||"rgb"==b&&3==d.length&&c.indexOf("%")>0||"rgba"==b&&4==d.length&&c.indexOf("%")>0?(d[1].indexOf("%")==-1&&(d[1]+="%"),d[2].indexOf("%")==-1&&(d[2]+="%"),b+"("+d.join(",")+")"):a}),c.colors.opacity&&a.indexOf("background")==-1&&(b=b.replace(/(?:rgba|hsla)\(0,0%?,0%?,0\)/g,function(a){return X(b,",").pop().indexOf("gradient(")>-1?a:"transparent"})),I(b))}function k(a){1==a.value.length&&(a.value[0][1]=a.value[0][1].replace(/progid:DXImageTransform\.Microsoft\.(Alpha|Chroma)(\W)/,function(a,b,c){return b.toLowerCase()+c})),a.value[0][1]=a.value[0][1].replace(/,(\S)/g,", $1").replace(/ ?= ?/g,"=")}function l(a,b){var c,d=a.value,e=aa.indexOf(d[0][1])>-1||d[1]&&aa.indexOf(d[1][1])>-1||d[2]&&aa.indexOf(d[2][1])>-1,f=b.level[T.One].optimizeFontWeight,g=0;f&&(e||d[1]&&"/"==d[1][1]||("normal"==d[0][1]&&g++,d[1]&&"normal"==d[1][1]&&g++,d[2]&&"normal"==d[2][1]&&g++,g>1||(ca.indexOf(d[0][1])>-1?c=0:d[1]&&ca.indexOf(d[1][1])>-1?c=1:d[2]&&ca.indexOf(d[2][1])>-1?c=2:ba.indexOf(d[0][1])>-1?c=0:d[1]&&ba.indexOf(d[1][1])>-1?c=1:d[2]&&ba.indexOf(d[2][1])>-1&&(c=2),void 0!==c&&f&&(m(a,c),a.dirty=!0))))}function m(a,b){var c=a.value[b][1];"normal"==c?c="400":"bold"==c&&(c="700"),a.value[b][1]=c}function n(a){var b,c=a.value;4==c.length&&"0"===c[0][1]&&"0"===c[1][1]&&"0"===c[2][1]&&"0"===c[3][1]&&(b=a.name.indexOf("box-shadow")>-1?2:1),b&&(a.value.splice(b),a.dirty=!0)}function o(a){var b=a.value;1==b.length&&"none"==b[0][1]&&(b[0][1]="0")}function p(a,b,c){return da.test(b)?b.replace(da,function(a,b){var d,e=parseInt(b);return 0===e?a:(c.properties.shorterLengthUnits&&c.units.pt&&3*e%4==0&&(d=3*e/4+"pt"),c.properties.shorterLengthUnits&&c.units.pc&&e%16==0&&(d=e/16+"pc"),c.properties.shorterLengthUnits&&c.units.in&&e%96==0&&(d=e/96+"in"),d&&(d=a.substring(0,a.indexOf(b))+d),d&&d.length<a.length?d:a)}):b}function q(a,b,c){var d=b.replace(/(\d)\.($|\D)/g,"$1$2");return c.matcher&&b.indexOf(".")!==-1?d.replace(c.matcher,function(a,b,d,e){var f=c.units[e].multiplier,g=parseInt(b),h=isNaN(g)?0:g,i=parseFloat(d);return Math.round((h+i)*f)/f+e}):d}function r(a,b){return ea.test(b)?b.replace(ea,function(a,b,c){var d;return"ms"==c?d=parseInt(b)/1e3+"s":"s"==c&&(d=1e3*parseFloat(b)+"ms"),d.length<a.length?d:a}):b}function s(a,b,c){
+return/^(?:\-moz\-calc|\-webkit\-calc|calc)\(/.test(b)?b:"flex"==a||"-ms-flex"==a||"-webkit-flex"==a||"flex-basis"==a||"-webkit-flex-basis"==a?b:b.indexOf("%")>0&&("height"==a||"max-height"==a)?b:b.replace(c,"$10$2").replace(c,"$10$2")}function t(a,b){return a.indexOf("filter")>-1||b.indexOf(" ")==-1||0===b.indexOf("expression")?b:b.indexOf(V.SINGLE_QUOTE)>-1||b.indexOf(V.DOUBLE_QUOTE)>-1?b:(b=b.replace(/\s+/g," "),b.indexOf("calc")>-1&&(b=b.replace(/\) ?\/ ?/g,")/ ")),b.replace(/(\(;?)\s+/g,"$1").replace(/\s+(;?\))/g,"$1").replace(/, /g,","))}function u(a,b){return b.indexOf("0deg")==-1?b:b.replace(/\(0deg\)/g,"(0)")}function v(a,b){return b.indexOf("0")==-1?b:(b.indexOf("-")>-1&&(b=b.replace(/([^\w\d\-]|^)\-0([^\.]|$)/g,"$10$2").replace(/([^\w\d\-]|^)\-0([^\.]|$)/g,"$10$2")),b.replace(/(^|\s)0+([1-9])/g,"$1$2").replace(/(^|\D)\.0+(\D|$)/g,"$10$2").replace(/(^|\D)\.0+(\D|$)/g,"$10$2").replace(/\.([1-9]*)0+(\D|$)/g,function(a,b,c){return(b.length>0?".":"")+b+c}).replace(/(^|\D)0\.(\d)/g,"$1.$2"))}function w(a,b){return"content"==a||a.indexOf("font-feature-settings")>-1?b:ia.test(b)?b.substring(1,b.length-1):b}function x(a){return!/^url\(['"].+['"]\)$/.test(a)||/^url\(['"].*[\*\s\(\)'"].*['"]\)$/.test(a)||/^url\(['"]data:[^;]+;charset/.test(a)?a:a.replace(/["']/g,"")}function y(a,b,c){var d=c(a,b);return void 0===d?b:d===!1?Y:d}function z(a,b){var c,B,C,D,E,F,H=b.options,I=H.level[T.One],J=S(a,!0);a:for(var K=0,L=J.length;K<L;K++)if(c=J[K],B=c.name,fa.test(B)||(F=c.all[c.position],b.warnings.push("Invalid property name '"+B+"' at "+W(F[1][2][0])+". Ignoring."),c.unused=!0),0===c.value.length&&(F=c.all[c.position],b.warnings.push("Empty property '"+B+"' at "+W(F[1][2][0])+". Ignoring."),c.unused=!0),c.hack&&((c.hack==P.ASTERISK||c.hack==P.UNDERSCORE)&&!H.compatibility.properties.iePrefixHack||c.hack==P.BACKSLASH&&!H.compatibility.properties.ieSuffixHack||c.hack==P.BANG&&!H.compatibility.properties.ieBangHack)&&(c.unused=!0),I.removeNegativePaddings&&0===B.indexOf("padding")&&(d(c.value[0])||d(c.value[1])||d(c.value[2])||d(c.value[3]))&&(c.unused=!0),!H.compatibility.properties.ieFilters&&G(c)&&(c.unused=!0),!c.unused)if(c.block)z(c.value[0][1],b);else if(!ka.test(B)){for(var M=0,N=c.value.length;M<N;M++){if(C=c.value[M][0],D=c.value[M][1],E=f(D),C==U.PROPERTY_BLOCK){c.unused=!0,b.warnings.push("Invalid value token at "+W(D[0][1][2][0])+". Ignoring.");break}if(E&&!b.validator.isValidUrl(D)){c.unused=!0,b.warnings.push("Broken URL '"+D+"' at "+W(c.value[M][2][0])+". Ignoring.");break}if(E?(D=I.normalizeUrls?g(D):D,D=H.compatibility.properties.urlQuotes?D:x(D)):e(D)?D=I.removeQuotes?w(B,D):D:(D=I.removeWhitespace?t(B,D):D,D=q(B,D,H.precision),D=p(B,D,H.compatibility),D=I.replaceTimeUnits?r(B,D):D,D=I.replaceZeroUnits?v(B,D):D,H.compatibility.properties.zeroUnits&&(D=u(B,D),D=s(B,D,H.unitsRegexp)),H.compatibility.properties.colors&&(D=j(B,D,H.compatibility))),(D=y(B,D,I.transform))===Y){c.unused=!0;continue a}c.value[M][1]=D}I.replaceMultipleZeros&&n(c),"background"==B&&I.optimizeBackground?h(c):0===B.indexOf("border")&&B.indexOf("radius")>0&&I.optimizeBorderRadius?i(c):"filter"==B&&I.optimizeFilter&&H.compatibility.properties.ieFilters?k(c):"font"==B&&I.optimizeFont?l(c,H):"font-weight"==B&&I.optimizeFontWeight?m(c,0):"outline"==B&&I.optimizeOutline&&o(c)}R(J),Q(J),J.length!=a.length&&A(a,H)}function A(a,b){var c,d;for(d=0;d<a.length;d++)c=a[d],c[0]==U.COMMENT&&(B(c,b),0===c[1].length&&(a.splice(d,1),d--))}function B(a,b){if(a[1][2]==V.EXCLAMATION&&("all"==b.level[T.One].specialComments||b.commentsKept<b.level[T.One].specialComments))return void b.commentsKept++;a[1]=[]}function C(a){for(var b=!1,c=0,d=a.length;c<d;c++){var e=a[c];e[0]==U.AT_RULE&&$.test(e[1])&&(b||e[1].indexOf(Z)==-1?(a.splice(c,1),c--,d--):(b=!0,a.splice(c,1),a.unshift([U.AT_RULE,e[1].replace($,Z)])))}}function D(a){var b=["px","em","ex","cm","mm","in","pt","pc","%"];return["ch","rem","vh","vm","vmax","vmin","vw"].forEach(function(c){a.compatibility.units[c]&&b.push(c)}),new RegExp("(^|\\s|\\(|,)0(?:"+b.join("|")+")(\\W|$)","g")}function E(a){var b,c,d={matcher:null,units:{}},e=[];for(b in a)(c=a[b])!=_&&(d.units[b]={},d.units[b].value=c,d.units[b].multiplier=Math.pow(10,c),e.push(b));return e.length>0&&(d.matcher=new RegExp("(\\d*)(\\.\\d+)("+e.join("|")+")","g")),d}function F(a){return ga.test(a[1])}function G(a){var b;return("filter"==a.name||"-ms-filter"==a.name)&&(b=a.value[0][1],b.indexOf("progid")>-1||0===b.indexOf("alpha")||0===b.indexOf("chroma"))}function H(a,b){var c=b.options,d=c.level[T.One],e=c.compatibility.selectors.ie7Hack,f=c.compatibility.selectors.adjacentSpace,g=c.compatibility.properties.spaceAfterClosingBrace,h=c.format,i=!1,j=!1;c.unitsRegexp=c.unitsRegexp||D(c),c.precision=c.precision||E(d.roundingPrecision),c.commentsKept=c.commentsKept||0;for(var k=0,l=a.length;k<l;k++){var m=a[k];switch(m[0]){case U.AT_RULE:m[1]=F(m)&&j?"":m[1],m[1]=d.tidyAtRules?O(m[1]):m[1],i=!0;break;case U.AT_RULE_BLOCK:z(m[2],b),j=!0;break;case U.NESTED_BLOCK:m[1]=d.tidyBlockScopes?N(m[1],g):m[1],H(m[2],b),j=!0;break;case U.COMMENT:B(m,c);break;case U.RULE:m[1]=d.tidySelectors?M(m[1],!e,f,h,b.warnings):m[1],m[1]=m[1].length>1?L(m[1],d.selectorsSortingMethod):m[1],z(m[2],b),j=!0}(0===m[1].length||m[2]&&0===m[2].length)&&(a.splice(k,1),k--,l--)}return d.cleanupCharsets&&i&&C(a),a}var I=a("./shorten-hex"),J=a("./shorten-hsl"),K=a("./shorten-rgb"),L=a("./sort-selectors"),M=a("./tidy-rules"),N=a("./tidy-block"),O=a("./tidy-at-rule"),P=a("../hack"),Q=a("../remove-unused"),R=a("../restore-from-optimizing"),S=a("../wrap-for-optimizing").all,T=a("../../options/optimization-level").OptimizationLevel,U=a("../../tokenizer/token"),V=a("../../tokenizer/marker"),W=a("../../utils/format-position"),X=a("../../utils/split"),Y="ignore-property",Z="@charset",$=new RegExp("^"+Z,"i"),_=a("../../options/rounding-precision").DEFAULT,aa=["100","200","300","400","500","600","700","800","900"],ba=["normal","bold","bolder","lighter"],ca=["bold","bolder","lighter"],da=/(?:^|\s|\()(-?\d+)px/,ea=/^(\-?[\d\.]+)(m?s)$/,fa=/^(?:\-chrome\-|\-[\w\-]+\w|\w[\w\-]+\w|\-\-\S+)$/,ga=/^@import/i,ha=/^('.*'|".*")$/,ia=/^['"][a-zA-Z][a-zA-Z\d\-_]+['"]$/,ja=/^url\(/i,ka=/^--\S+$/;b.exports=H},{"../../options/optimization-level":63,"../../options/rounding-precision":66,"../../tokenizer/marker":81,"../../tokenizer/token":82,"../../utils/format-position":85,"../../utils/split":94,"../hack":9,"../remove-unused":54,"../restore-from-optimizing":55,"../wrap-for-optimizing":57,"./shorten-hex":12,"./shorten-hsl":13,"./shorten-rgb":14,"./sort-selectors":15,"./tidy-at-rule":16,"./tidy-block":17,"./tidy-rules":18}],12:[function(a,b,c){function d(a,b,c,d){return b+h[c.toLowerCase()]+d}function e(a,b,c){return i[b.toLowerCase()]+c}function f(a){var b=a.indexOf("#")>-1,c=a.replace(l,d);return c!=a&&(c=c.replace(l,d)),b?c.replace(m,e):c}var g={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#0ff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000",blanchedalmond:"#ffebcd",blue:"#00f",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#0ff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#f0f",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#0f0",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#f00",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#fff",whitesmoke:"#f5f5f5",yellow:"#ff0",yellowgreen:"#9acd32"},h={},i={};for(var j in g){var k=g[j];j.length<k.length?i[k]=j:h[j]=k}var l=new RegExp("(^| |,|\\))("+Object.keys(h).join("|")+")( |,|\\)|$)","ig"),m=new RegExp("("+Object.keys(i).join("|")+")([^a-f0-9]|$)","ig");b.exports=f},{}],13:[function(a,b,c){function d(a,b,c){var d,f,g;if(a%=360,a<0&&(a+=360),a=~~a/360,b<0?b=0:b>100&&(b=100),b=~~b/100,c<0?c=0:c>100&&(c=100),c=~~c/100,0===b)d=f=g=c;else{var h=c<.5?c*(1+b):c+b-c*b,i=2*c-h;d=e(i,h,a+1/3),f=e(i,h,a),g=e(i,h,a-1/3)}return[~~(255*d),~~(255*f),~~(255*g)]}function e(a,b,c){return c<0&&(c+=1),c>1&&(c-=1),c<1/6?a+6*(b-a)*c:c<.5?b:c<2/3?a+(b-a)*(2/3-c)*6:a}function f(a,b,c){var e=d(a,b,c),f=e[0].toString(16),g=e[1].toString(16),h=e[2].toString(16);return"#"+(1==f.length?"0":"")+f+(1==g.length?"0":"")+g+(1==h.length?"0":"")+h}b.exports=f},{}],14:[function(a,b,c){function d(a,b,c){return"#"+("00000"+(Math.max(0,Math.min(parseInt(a),255))<<16|Math.max(0,Math.min(parseInt(b),255))<<8|Math.max(0,Math.min(parseInt(c),255))).toString(16)).slice(-6)}b.exports=d},{}],15:[function(a,b,c){function d(a,b){return g(a[1],b[1])}function e(a,b){return a[1]>b[1]?1:-1}function f(a,b){var c;switch(b){case"natural":c=d;break;case"standard":c=e}return a.sort(c)}var g=a("../../utils/natural-compare");b.exports=f},{"../../utils/natural-compare":92}],16:[function(a,b,c){function d(a){return a.replace(/\s+/g," ").replace(/url\(\s+/g,"url(").replace(/\s+\)/g,")").trim()}b.exports=d},{}],17:[function(a,b,c){function d(a,b){var c;for(c=a.length-1;c>=0;c--)a[c][1]=a[c][1].replace(/\n|\r\n/g," ").replace(/\s+/g," ").replace(/(,|:|\() /g,"$1").replace(/ \)/g,")").replace(/'([a-zA-Z][a-zA-Z\d\-_]+)'/,"$1").replace(/"([a-zA-Z][a-zA-Z\d\-_]+)"/,"$1").replace(b?null:/\) /g,")");return a}b.exports=d},{}],18:[function(a,b,c){function d(a){var b,c,d,e,f=!1,g=!1;for(d=0,e=a.length;d<e;d++){if(c=a[d],b);else if(c==i.SINGLE_QUOTE||c==i.DOUBLE_QUOTE)g=!g;else{if(!(g||c!=i.CLOSE_CURLY_BRACKET&&c!=i.EXCLAMATION&&c!=p&&c!=i.SEMICOLON)){f=!0;break}if(!g&&0===d&&l.test(c)){f=!0;break}}b=c==i.BACK_SLASH}return f}function e(a,b){var c,d,e,f,g,j,k,n,o,p,q,r,s,t=[],u=0,v=!1,w=!1,x=b&&b.spaces[h.AroundSelectorRelation];for(r=0,s=a.length;r<s;r++){if(c=a[r],d=c==i.NEW_LINE_NIX,e=c==i.NEW_LINE_NIX&&a[r-1]==i.NEW_LINE_WIN,j=k||n,p=!f&&0===u&&l.test(c),q=m.test(c),g&&j&&e)t.pop(),t.pop();else if(f&&j&&d)t.pop();else if(f)t.push(c);else if(c!=i.OPEN_SQUARE_BRACKET||j)if(c!=i.CLOSE_SQUARE_BRACKET||j)if(c!=i.OPEN_ROUND_BRACKET||j)if(c!=i.CLOSE_ROUND_BRACKET||j)if(c!=i.SINGLE_QUOTE||j)if(c!=i.DOUBLE_QUOTE||j)if(c==i.SINGLE_QUOTE&&j)t.push(c),k=!1;else if(c==i.DOUBLE_QUOTE&&j)t.push(c),n=!1;else{if(q&&v&&!x)continue;!q&&v&&x?(t.push(i.SPACE),t.push(c)):q&&(o||u>0)&&!j||q&&w&&!j||(e||d)&&(o||u>0)&&j||(p&&w&&!x?(t.pop(),t.push(c)):p&&!w&&x?(t.push(i.SPACE),t.push(c)):q?t.push(i.SPACE):t.push(c))}else t.push(c),n=!0;else t.push(c),k=!0;else t.push(c),u--;else t.push(c),u++;else t.push(c),o=!1;else t.push(c),o=!0;g=f,f=c==i.BACK_SLASH,v=p,w=q}return t.join("")}function f(a){return a.replace(/='([a-zA-Z][a-zA-Z\d\-_]+)'/g,"=$1").replace(/="([a-zA-Z][a-zA-Z\d\-_]+)"/g,"=$1")}function g(a,b,c,g,h){function i(a,b){return h.push("HTML comment '"+b+"' at "+j(a[2][0])+". Removing."),""}for(var l=[],m=[],p=0,q=a.length;p<q;p++){var r=a[p],s=r[1];s=s.replace(k,i.bind(null,r)),d(s)?h.push("Invalid selector '"+r[1]+"' at "+j(r[2][0])+". Ignoring."):(s=e(s,g),s=f(s),c&&s.indexOf("nav")>0&&(s=s.replace(/\+nav(\S|$)/,"+ nav$1")),b&&s.indexOf(n)>-1||b&&s.indexOf(o)>-1||(s.indexOf("*")>-1&&(s=s.replace(/\*([:#\.\[])/g,"$1").replace(/^(\:first\-child)?\+html/,"*$1+html")),m.indexOf(s)>-1||(r[1]=s,m.push(s),l.push(r))))}return 1==l.length&&0===l[0][1].length&&(h.push("Empty selector '"+l[0][1]+"' at "+j(l[0][2][0])+". Ignoring."),l=[]),l}var h=a("../../options/format").Spaces,i=a("../../tokenizer/marker"),j=a("../../utils/format-position"),k=/^(?:(?:<!--|-->)\s*)+/,l=/[>\+~]/,m=/\s/,n="*+html ",o="*:first-child+html ",p="<";b.exports=g},{"../../options/format":59,"../../tokenizer/marker":81,"../../utils/format-position":85}],19:[function(a,b,c){function d(a){return function(b){return"invert"==b[1]||a.isValidColor(b[1])||a.isValidVendorPrefixedValue(b[1])}}function e(a){return function(b){return"inherit"!=b[1]&&a.isValidStyle(b[1])&&!a.isValidColorValue(b[1])}}function f(a,b,c){var d=c[a];return o(d.doubleValues&&2==d.defaultValue.length?[p.PROPERTY,[p.PROPERTY_NAME,a],[p.PROPERTY_VALUE,d.defaultValue[0]],[p.PROPERTY_VALUE,d.defaultValue[1]]]:d.doubleValues&&1==d.defaultValue.length?[p.PROPERTY,[p.PROPERTY_NAME,a],[p.PROPERTY_VALUE,d.defaultValue[0]]]:[p.PROPERTY,[p.PROPERTY_NAME,a],[p.PROPERTY_VALUE,d.defaultValue]])}function g(a){return function(b){return"inherit"!=b[1]&&a.isValidWidth(b[1])&&!a.isValidStyle(b[1])&&!a.isValidColorValue(b[1])}}function h(a,b,c){var d=f("background-image",a,b),e=f("background-position",a,b),g=f("background-size",a,b),h=f("background-repeat",a,b),i=f("background-attachment",a,b),j=f("background-origin",a,b),k=f("background-clip",a,b),l=f("background-color",a,b),m=[d,e,g,h,i,j,k,l],o=a.value,p=!1,r=!1,s=!1,t=!1,u=!1;if(1==a.value.length&&"inherit"==a.value[0][1])return l.value=d.value=h.value=e.value=g.value=j.value=k.value=a.value,m;if(1==a.value.length&&"0 0"==a.value[0][1])return m;for(var v=o.length-1;v>=0;v--){var w=o[v];if(c.isValidBackgroundAttachment(w[1]))i.value=[w],u=!0;else if(c.isValidBackgroundClip(w[1])||c.isValidBackgroundOrigin(w[1]))r?(j.value=[w],s=!0):(k.value=[w],r=!0),u=!0;else if(c.isValidBackgroundRepeat(w[1]))t?h.value.unshift(w):(h.value=[w],t=!0),u=!0;else if(c.isValidBackgroundPositionPart(w[1])||c.isValidBackgroundSizePart(w[1])){if(v>0){var x=o[v-1];"/"==x[1]?g.value=[w]:v>1&&"/"==o[v-2][1]?(g.value=[x,w],v-=2):(p||(e.value=[]),e.value.unshift(w),p=!0)}else p||(e.value=[]),e.value.unshift(w),p=!0;u=!0}else l.value[0][1]!=b[l.name].defaultValue&&"none"!=l.value[0][1]||!c.isValidColor(w[1])&&!c.isValidVendorPrefixedValue(w[1])?(c.isValidUrl(w[1])||c.isValidFunction(w[1]))&&(d.value=[w],u=!0):(l.value=[w],u=!0)}if(r&&!s&&(j.value=k.value.slice(0)),!u)throw new n("Invalid background value at "+q(o[0][2][0])+". Ignoring.");return m}function i(a,b){for(var c=a.value,d=-1,e=0,g=c.length;e<g;e++)if("/"==c[e][1]){d=e;break}if(0===d||d===c.length-1)throw new n("Invalid border-radius value at "+q(c[0][2][0])+". Ignoring.");var h=f(a.name,a,b);h.value=d>-1?c.slice(0,d):c.slice(0),h.components=j(h,b);var i=f(a.name,a,b);i.value=d>-1?c.slice(d+1):c.slice(0),i.components=j(i,b);for(var k=0;k<4;k++)h.components[k].multiplex=!0,h.components[k].value=h.components[k].value.concat(i.components[k].value);return h.components}function j(a,b){var c=b[a.name].components,d=[],e=a.value;if(e.length<1)return[];e.length<2&&(e[1]=e[0].slice(0)),e.length<3&&(e[2]=e[0].slice(0)),e.length<4&&(e[3]=e[1].slice(0));for(var f=c.length-1;f>=0;f--){var g=o([p.PROPERTY,[p.PROPERTY_NAME,c[f]]]);g.value=[e[f]],d.unshift(g)}return d}function k(a){return function(b,c,d){var e,g,h,i,j=[],k=b.value;for(e=0,h=k.length;e<h;e++)","==k[e][1]&&j.push(e);if(0===j.length)return a(b,c,d);var l=[];for(e=0,h=j.length;e<=h;e++){var m=0===e?0:j[e-1]+1,n=e<h?j[e]:k.length,o=f(b.name,b,c);o.value=k.slice(m,n),l.push(a(o,c,d))}var q=l[0];for(e=0,h=q.length;e<h;e++)for(q[e].multiplex=!0,g=1,i=l.length;g<i;g++)q[e].value.push([p.PROPERTY_VALUE,r]),Array.prototype.push.apply(q[e].value,l[g][e].value);return q}}function l(a,b,c){var d=f("list-style-type",a,b),e=f("list-style-position",a,b),g=f("list-style-image",a,b),h=[d,e,g];if(1==a.value.length&&"inherit"==a.value[0][1])return d.value=e.value=g.value=[a.value[0]],h;var i=a.value.slice(0),j=i.length,k=0;for(k=0,j=i.length;k<j;k++)if(c.isValidUrl(i[k][1])||"0"==i[k][1]){g.value=[i[k]],i.splice(k,1);break}for(k=0,j=i.length;k<j;k++)if(c.isValidListStyleType(i[k][1])){d.value=[i[k]],i.splice(k,1);break}return i.length>0&&c.isValidListStylePosition(i[0][1])&&(e.value=[i[0]]),h}function m(a,b,c){for(var h,i,j,k=b[a.name],l=[f(k.components[0],a,b),f(k.components[1],a,b),f(k.components[2],a,b)],m=0;m<3;m++){var n=l[m];n.name.indexOf("color")>0?h=n:n.name.indexOf("style")>0?i=n:j=n}if(1==a.value.length&&"inherit"==a.value[0][1]||3==a.value.length&&"inherit"==a.value[0][1]&&"inherit"==a.value[1][1]&&"inherit"==a.value[2][1])return h.value=i.value=j.value=[a.value[0]],l;var o,p,q=a.value.slice(0);return q.length>0&&(p=q.filter(g(c)),(o=p.length>1&&("none"==p[0][1]||"auto"==p[0][1])?p[1]:p[0])&&(j.value=[o],q.splice(q.indexOf(o),1))),q.length>0&&(o=q.filter(e(c))[0])&&(i.value=[o],q.splice(q.indexOf(o),1)),q.length>0&&(o=q.filter(d(c))[0])&&(h.value=[o],q.splice(q.indexOf(o),1)),l}var n=a("./invalid-property-error"),o=a("../wrap-for-optimizing").single,p=a("../../tokenizer/token"),q=a("../../utils/format-position"),r=",";b.exports={background:h,border:m,borderRadius:i,fourValues:j,listStyle:l,multiplex:k,outline:m}},{"../../tokenizer/token":82,"../../utils/format-position":85,"../wrap-for-optimizing":57,"./invalid-property-error":24}],20:[function(a,b,c){function d(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidKeywordValue("background-position",c,!0))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||(!!a.isValidKeywordValue("background-position",c,!0)||m(a,b,c)))}function e(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidKeywordValue("background-size",c,!0))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||(!!a.isValidKeywordValue("background-size",c,!0)||m(a,b,c)))}function f(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidColor(c))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||!(!a.colorOpacity&&(a.isValidRgbaColor(b)||a.isValidHslaColor(b)))&&(!(!a.colorOpacity&&(a.isValidRgbaColor(c)||a.isValidHslaColor(c)))&&(!(!a.isValidColor(b)||!a.isValidColor(c))||k(a,b,c))))}function g(a){return function(b,c,d,e){return a[e](b,c,d)}}function h(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidImage(c))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||(!!a.isValidImage(c)||!a.isValidImage(b)&&k(a,b,c)))}function i(a){return function(b,c,d){return!(!p(b,c,d,0,!0)&&!b.isValidKeywordValue(a,d))&&(!(!b.isValidVariable(c)||!b.isValidVariable(d))||b.isValidKeywordValue(a,d,!1))}}function j(a){return function(b,c,d){return!(!p(b,c,d,0,!0)&&!b.isValidKeywordValue(a,d,!0))&&(!(!b.isValidVariable(c)||!b.isValidVariable(d))||b.isValidKeywordValue(a,d,!0))}}function k(a,b,c){return!!a.areSameFunction(b,c)||b===c}function l(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidTextShadow(c))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||a.isValidTextShadow(c))}function m(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidUnitWithoutFunction(c))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||!(a.isValidUnitWithoutFunction(b)&&!a.isValidUnitWithoutFunction(c))&&(!!a.isValidUnitWithoutFunction(c)||!a.isValidUnitWithoutFunction(b)&&(!(!a.isValidFunctionWithoutVendorPrefix(b)||!a.isValidFunctionWithoutVendorPrefix(c))||k(a,b,c))))}function n(a){var b=j(a);return function(a,c,d){return m(a,c,d)||b(a,c,d)}}function o(a,b,c){return!(!p(a,b,c,0,!0)&&!a.isValidZIndex(c))&&(!(!a.isValidVariable(b)||!a.isValidVariable(c))||a.isValidZIndex(c))}var p=a("./properties/understandable");b.exports={generic:{color:f,components:g,image:h,unit:m},property:{backgroundAttachment:i("background-attachment"),backgroundClip:j("background-clip"),backgroundOrigin:i("background-origin"),backgroundPosition:d,backgroundRepeat:i("background-repeat"),backgroundSize:e,bottom:n("bottom"),borderCollapse:i("border-collapse"),borderStyle:j("*-style"),clear:j("clear"),cursor:j("cursor"),display:j("display"),float:j("float"),fontStyle:j("font-style"),left:n("left"),fontWeight:j("font-weight"),listStyleType:j("list-style-type"),listStylePosition:j("list-style-position"),outlineStyle:j("*-style"),overflow:j("overflow"),position:j("position"),right:n("right"),textAlign:j("text-align"),textDecoration:j("text-decoration"),textOverflow:j("text-overflow"),textShadow:l,top:n("top"),transform:k,verticalAlign:n("vertical-align"),visibility:j("visibility"),whiteSpace:j("white-space"),zIndex:o}}},{"./properties/understandable":40}],21:[function(a,b,c){function d(a){for(var b=e(a),c=a.components.length-1;c>=0;c--){var d=e(a.components[c]);d.value=a.components[c].value.slice(0),b.components.unshift(d)}return b.dirty=!0,b.value=a.value.slice(0),b}function e(a){var b=f([g.PROPERTY,[g.PROPERTY_NAME,a.name]]);return b.important=a.important,b.hack=a.hack,b.unused=!1,b}var f=a("../wrap-for-optimizing").single,g=a("../../tokenizer/token");b.exports={deep:d,shallow:e}},{"../../tokenizer/token":82,"../wrap-for-optimizing":57}],22:[function(a,b,c){var d=a("./break-up"),e=a("./can-override"),f=a("./restore"),g=a("../../utils/override"),h={background:{canOverride:e.generic.components([e.generic.image,e.property.backgroundPosition,e.property.backgroundSize,e.property.backgroundRepeat,e.property.backgroundAttachment,e.property.backgroundOrigin,e.property.backgroundClip,e.generic.color]),components:["background-image","background-position","background-size","background-repeat","background-attachment","background-origin","background-clip","background-color"],breakUp:d.multiplex(d.background),defaultValue:"0 0",restore:f.multiplex(f.background),shortestValue:"0",shorthand:!0},"background-attachment":{canOverride:e.property.backgroundAttachment,componentOf:["background"],defaultValue:"scroll"},"background-clip":{canOverride:e.property.backgroundClip,componentOf:["background"],defaultValue:"border-box",shortestValue:"border-box"},"background-color":{canOverride:e.generic.color,componentOf:["background"],defaultValue:"transparent",multiplexLastOnly:!0,nonMergeableValue:"none",shortestValue:"red"},"background-image":{canOverride:e.generic.image,componentOf:["background"],defaultValue:"none"},"background-origin":{canOverride:e.property.backgroundOrigin,componentOf:["background"],defaultValue:"padding-box",shortestValue:"border-box"},"background-position":{canOverride:e.property.backgroundPosition,componentOf:["background"],defaultValue:["0","0"],doubleValues:!0,shortestValue:"0"},"background-repeat":{canOverride:e.property.backgroundRepeat,componentOf:["background"],defaultValue:["repeat"],doubleValues:!0},"background-size":{canOverride:e.property.backgroundSize,componentOf:["background"],defaultValue:["auto"],doubleValues:!0,shortestValue:"0 0"},bottom:{canOverride:e.property.bottom,defaultValue:"auto"},border:{breakUp:d.border,canOverride:e.generic.components([e.generic.unit,e.property.borderStyle,e.generic.color]),components:["border-width","border-style","border-color"],defaultValue:"none",overridesShorthands:["border-bottom","border-left","border-right","border-top"],restore:f.withoutDefaults,shorthand:!0,shorthandComponents:!0},"border-bottom":{breakUp:d.border,canOverride:e.generic.components([e.generic.unit,e.property.borderStyle,e.generic.color]),components:["border-bottom-width","border-bottom-style","border-bottom-color"],defaultValue:"none",restore:f.withoutDefaults,shorthand:!0},"border-bottom-color":{canOverride:e.generic.color,componentOf:["border-bottom","border-color"],defaultValue:"none"},"border-bottom-left-radius":{canOverride:e.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-bottom-right-radius":{canOverride:e.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-bottom-style":{canOverride:e.property.borderStyle,componentOf:["border-bottom","border-style"],defaultValue:"none"},"border-bottom-width":{canOverride:e.generic.unit,componentOf:["border-bottom","border-width"],defaultValue:"medium",shortestValue:"0"},"border-collapse":{canOverride:e.property.borderCollapse,defaultValue:"separate"},"border-color":{breakUp:d.fourValues,canOverride:e.generic.components([e.generic.color,e.generic.color,e.generic.color,e.generic.color]),componentOf:["border"],components:["border-top-color","border-right-color","border-bottom-color","border-left-color"],defaultValue:"none",restore:f.fourValues,shortestValue:"red",shorthand:!0},"border-left":{breakUp:d.border,canOverride:e.generic.components([e.generic.unit,e.property.borderStyle,e.generic.color]),components:["border-left-width","border-left-style","border-left-color"],defaultValue:"none",restore:f.withoutDefaults,shorthand:!0},"border-left-color":{canOverride:e.generic.color,componentOf:["border-color","border-left"],defaultValue:"none"},"border-left-style":{canOverride:e.property.borderStyle,componentOf:["border-left","border-style"],defaultValue:"none"},"border-left-width":{canOverride:e.generic.unit,componentOf:["border-left","border-width"],defaultValue:"medium",shortestValue:"0"},"border-radius":{breakUp:d.borderRadius,canOverride:e.generic.components([e.generic.unit,e.generic.unit,e.generic.unit,e.generic.unit]),components:["border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius"],defaultValue:"0",restore:f.borderRadius,shorthand:!0,vendorPrefixes:["-moz-","-o-"]},"border-right":{breakUp:d.border,canOverride:e.generic.components([e.generic.unit,e.property.borderStyle,e.generic.color]),components:["border-right-width","border-right-style","border-right-color"],defaultValue:"none",restore:f.withoutDefaults,shorthand:!0},"border-right-color":{canOverride:e.generic.color,componentOf:["border-color","border-right"],defaultValue:"none"},"border-right-style":{canOverride:e.property.borderStyle,componentOf:["border-right","border-style"],defaultValue:"none"},"border-right-width":{canOverride:e.generic.unit,componentOf:["border-right","border-width"],defaultValue:"medium",shortestValue:"0"},"border-style":{breakUp:d.fourValues,canOverride:e.generic.components([e.property.borderStyle,e.property.borderStyle,e.property.borderStyle,e.property.borderStyle]),componentOf:["border"],components:["border-top-style","border-right-style","border-bottom-style","border-left-style"],defaultValue:"none",restore:f.fourValues,shorthand:!0},"border-top":{breakUp:d.border,canOverride:e.generic.components([e.generic.unit,e.property.borderStyle,e.generic.color]),components:["border-top-width","border-top-style","border-top-color"],defaultValue:"none",restore:f.withoutDefaults,shorthand:!0},"border-top-color":{canOverride:e.generic.color,componentOf:["border-color","border-top"],defaultValue:"none"},"border-top-left-radius":{canOverride:e.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-top-right-radius":{canOverride:e.generic.unit,componentOf:["border-radius"],defaultValue:"0",vendorPrefixes:["-moz-","-o-"]},"border-top-style":{canOverride:e.property.borderStyle,componentOf:["border-style","border-top"],defaultValue:"none"},"border-top-width":{canOverride:e.generic.unit,componentOf:["border-top","border-width"],defaultValue:"medium",shortestValue:"0"},"border-width":{breakUp:d.fourValues,canOverride:e.generic.components([e.generic.unit,e.generic.unit,e.generic.unit,e.generic.unit]),components:["border-top-width","border-right-width","border-bottom-width","border-left-width"],defaultValue:"medium",restore:f.fourValues,shortestValue:"0",shorthand:!0},clear:{canOverride:e.property.clear,defaultValue:"none"},color:{canOverride:e.generic.color,defaultValue:"transparent",shortestValue:"red"},cursor:{canOverride:e.property.cursor,defaultValue:"auto"},display:{canOverride:e.property.display},float:{canOverride:e.property.float,defaultValue:"none"},"font-size":{canOverride:e.generic.unit,defaultValue:"medium",shortestValue:"0"},"font-style":{canOverride:e.property.fontStyle,defaultValue:"normal"},"font-weight":{canOverride:e.property.fontWeight,defaultValue:"400",shortestValue:"400"},height:{canOverride:e.generic.unit,defaultValue:"auto",shortestValue:"0"},left:{canOverride:e.property.left,defaultValue:"auto"},"line-height":{canOverride:e.generic.unit,defaultValue:"normal",shortestValue:"0"},"list-style":{canOverride:e.generic.components([e.property.listStyleType,e.property.listStylePosition,e.property.listStyleImage]),components:["list-style-type","list-style-position","list-style-image"],breakUp:d.listStyle,restore:f.withoutDefaults,defaultValue:"outside",shortestValue:"none",shorthand:!0},"list-style-image":{canOverride:e.generic.image,componentOf:["list-style"],defaultValue:"none"},"list-style-position":{canOverride:e.property.listStylePosition,componentOf:["list-style"],defaultValue:"outside",shortestValue:"inside"},"list-style-type":{canOverride:e.property.listStyleType,componentOf:["list-style"],defaultValue:"decimal|disc",shortestValue:"none"},margin:{breakUp:d.fourValues,canOverride:e.generic.components([e.generic.unit,e.generic.unit,e.generic.unit,e.generic.unit]),components:["margin-top","margin-right","margin-bottom","margin-left"],defaultValue:"0",restore:f.fourValues,shorthand:!0},"margin-bottom":{canOverride:e.generic.unit,componentOf:["margin"],defaultValue:"0"},"margin-left":{canOverride:e.generic.unit,componentOf:["margin"],defaultValue:"0"},"margin-right":{canOverride:e.generic.unit,componentOf:["margin"],defaultValue:"0"},"margin-top":{canOverride:e.generic.unit,componentOf:["margin"],defaultValue:"0"},outline:{canOverride:e.generic.components([e.generic.color,e.property.outlineStyle,e.generic.unit]),components:["outline-color","outline-style","outline-width"],breakUp:d.outline,restore:f.withoutDefaults,defaultValue:"0",shorthand:!0},"outline-color":{canOverride:e.generic.color,componentOf:["outline"],defaultValue:"invert",shortestValue:"red"},"outline-style":{canOverride:e.property.outlineStyle,componentOf:["outline"],defaultValue:"none"},"outline-width":{canOverride:e.generic.unit,componentOf:["outline"],defaultValue:"medium",shortestValue:"0"},overflow:{canOverride:e.property.overflow,defaultValue:"visible"},"overflow-x":{canOverride:e.property.overflow,defaultValue:"visible"},"overflow-y":{canOverride:e.property.overflow,defaultValue:"visible"},padding:{breakUp:d.fourValues,canOverride:e.generic.components([e.generic.unit,e.generic.unit,e.generic.unit,e.generic.unit]),components:["padding-top","padding-right","padding-bottom","padding-left"],defaultValue:"0",restore:f.fourValues,shorthand:!0},"padding-bottom":{canOverride:e.generic.unit,
+componentOf:["padding"],defaultValue:"0"},"padding-left":{canOverride:e.generic.unit,componentOf:["padding"],defaultValue:"0"},"padding-right":{canOverride:e.generic.unit,componentOf:["padding"],defaultValue:"0"},"padding-top":{canOverride:e.generic.unit,componentOf:["padding"],defaultValue:"0"},position:{canOverride:e.property.position,defaultValue:"static"},right:{canOverride:e.property.right,defaultValue:"auto"},"text-align":{canOverride:e.property.textAlign,defaultValue:"left|right"},"text-decoration":{canOverride:e.property.textDecoration,defaultValue:"none"},"text-overflow":{canOverride:e.property.textOverflow,defaultValue:"none"},"text-shadow":{canOverride:e.property.textShadow,defaultValue:"none"},top:{canOverride:e.property.top,defaultValue:"auto"},transform:{canOverride:e.property.transform,vendorPrefixes:["-moz-","-ms-","-webkit-"]},"vertical-align":{canOverride:e.property.verticalAlign,defaultValue:"baseline"},visibility:{canOverride:e.property.visibility,defaultValue:"visible"},"white-space":{canOverride:e.property.whiteSpace,defaultValue:"normal"},width:{canOverride:e.generic.unit,defaultValue:"auto",shortestValue:"0"},"z-index":{canOverride:e.property.zIndex,defaultValue:"auto"}},i={};for(var j in h){var k=h[j];if("vendorPrefixes"in k){for(var l=0;l<k.vendorPrefixes.length;l++){var m=k.vendorPrefixes[l],n=function(a,b){var c=g(h[a],{});return"componentOf"in c&&(c.componentOf=c.componentOf.map(function(a){return b+a})),"components"in c&&(c.components=c.components.map(function(a){return b+a})),c}(j,m);delete n.vendorPrefixes,i[m+j]=n}delete k.vendorPrefixes}}b.exports=g(h,i)},{"../../utils/override":93,"./break-up":19,"./can-override":20,"./restore":48}],23:[function(a,b,c){function d(a){var b,c,i,j,k,l,m=[];if(a[0]==f.RULE)for(b=!/[\.\+>~]/.test(g(a[1])),k=0,l=a[2].length;k<l;k++)c=a[2][k],c[0]==f.PROPERTY&&(i=c[1][1],0!==i.length&&0!==i.indexOf("--")&&(j=h(c,k),m.push([i,j,e(i),a[2][k],i+":"+j,a[1],b])));else if(a[0]==f.NESTED_BLOCK)for(k=0,l=a[2].length;k<l;k++)m=m.concat(d(a[2][k]));return m}function e(a){return"list-style"==a?a:a.indexOf("-radius")>0?"border-radius":"border-collapse"==a||"border-spacing"==a||"border-image"==a?a:0===a.indexOf("border-")&&/^border\-\w+\-\w+$/.test(a)?a.match(/border\-\w+/)[0]:0===a.indexOf("border-")&&/^border\-\w+$/.test(a)?"border":0===a.indexOf("text-")?a:"-chrome-"==a?a:a.replace(/^\-\w+\-/,"").match(/([a-zA-Z]+)/)[0].toLowerCase()}var f=a("../../tokenizer/token"),g=a("../../writer/one-time").rules,h=a("../../writer/one-time").value;b.exports=d},{"../../tokenizer/token":82,"../../writer/one-time":96}],24:[function(a,b,c){function d(a){this.name="InvalidPropertyError",this.message=a,this.stack=(new Error).stack}d.prototype=Object.create(Error.prototype),d.prototype.constructor=d,b.exports=d},{}],25:[function(a,b,c){function d(a,b,c){var d,h,i,j=m(a,l.COMMA);for(h=0,i=j.length;h<i;h++)if(d=j[h],0===d.length||e(d)||d.indexOf(l.COLON)>-1&&!g(d,f(d),b,c))return!1;return!0}function e(a){return n.test(a)}function f(a){var b,c,d,e,f,g,h=[],i=[],j=s.ROOT,k=0,m=!1,n=!1;for(f=0,g=a.length;f<g;f++)b=a[f],e=!d&&r.test(b),c=j==s.DOUBLE_QUOTE||j==s.SINGLE_QUOTE,d?i.push(b):b==l.DOUBLE_QUOTE&&j==s.ROOT?(i.push(b),j=s.DOUBLE_QUOTE):b==l.DOUBLE_QUOTE&&j==s.DOUBLE_QUOTE?(i.push(b),j=s.ROOT):b==l.SINGLE_QUOTE&&j==s.ROOT?(i.push(b),j=s.SINGLE_QUOTE):b==l.SINGLE_QUOTE&&j==s.SINGLE_QUOTE?(i.push(b),j=s.ROOT):c?i.push(b):b==l.OPEN_ROUND_BRACKET?(i.push(b),k++):b==l.CLOSE_ROUND_BRACKET&&1==k&&m?(i.push(b),h.push(i.join("")),k--,i=[],m=!1):b==l.CLOSE_ROUND_BRACKET?(i.push(b),k--):b==l.COLON&&0===k&&m&&!n?(h.push(i.join("")),i=[],i.push(b)):b!=l.COLON||0!==k||n?b==l.SPACE&&0===k&&m?(h.push(i.join("")),i=[],m=!1):e&&0===k&&m?(h.push(i.join("")),i=[],m=!1):i.push(b):(i=[],i.push(b),m=!0),d=b==l.BACK_SLASH,n=b==l.COLON;return i.length>0&&m&&h.push(i.join("")),h}function g(a,b,c,d){return h(b,c,d)&&i(b)&&(b.length<2||!j(a,b))&&(b.length<2||!k(b))}function h(a,b,c){var d,e,f,g;for(f=0,g=a.length;f<g;f++)if(d=a[f],e=d.indexOf(l.OPEN_ROUND_BRACKET)>-1?d.substring(0,d.indexOf(l.OPEN_ROUND_BRACKET)):d,b.indexOf(e)===-1&&c.indexOf(e)===-1)return!1;return!0}function i(a){var b,c,d,e,f,g;for(f=0,g=a.length;f<g;f++){if(b=a[f],d=b.indexOf(l.OPEN_ROUND_BRACKET),e=d>-1,c=e?b.substring(0,d):b,e&&q.indexOf(c)==-1)return!1;if(!e&&q.indexOf(c)>-1)return!1}return!0}function j(a,b){var c,d,e,f,g,h,i,j,k=0;for(i=0,j=b.length;i<j&&(c=b[i],e=b[i+1]);i++)if(d=a.indexOf(c,k),f=a.indexOf(c,d+1),k=f,d+c.length==f&&(g=c.indexOf(l.OPEN_ROUND_BRACKET)>-1?c.substring(0,c.indexOf(l.OPEN_ROUND_BRACKET)):c,h=e.indexOf(l.OPEN_ROUND_BRACKET)>-1?e.substring(0,e.indexOf(l.OPEN_ROUND_BRACKET)):e,g!=p||h!=p))return!0;return!1}function k(a){var b,c,d,e=o.test(a[0]);for(c=0,d=a.length;c<d;c++)if(b=a[c],o.test(b)!=e)return!0;return!1}var l=a("../../tokenizer/marker"),m=a("../../utils/split"),n=/\/deep\//,o=/^::/,p=":not",q=[":dir",":lang",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type"],r=/[>\+~]/,s={DOUBLE_QUOTE:"double-quote",SINGLE_QUOTE:"single-quote",ROOT:"root"};b.exports=d},{"../../tokenizer/marker":81,"../../utils/split":94}],26:[function(a,b,c){function d(a,b){for(var c=[null,[],[]],d=b.options,m=d.compatibility.selectors.adjacentSpace,n=d.level[i.One].selectorsSortingMethod,o=d.compatibility.selectors.mergeablePseudoClasses,p=d.compatibility.selectors.mergeablePseudoElements,q=0,r=a.length;q<r;q++){var s=a[q];s[0]==l.RULE?c[0]==l.RULE&&k(s[1])==k(c[1])?(Array.prototype.push.apply(c[2],s[2]),f(c[2],!0,!0,b),s[2]=[]):c[0]==l.RULE&&j(s[2])==j(c[2])&&e(k(s[1]),o,p)&&e(k(c[1]),o,p)?(c[1]=h(c[1].concat(s[1]),!1,m,!1,b.warnings),c[1]=c.length>1?g(c[1],n):c[1],s[2]=[]):c=s:c=[null,[],[]]}}var e=a("./is-mergeable"),f=a("./properties/optimize"),g=a("../level-1/sort-selectors"),h=a("../level-1/tidy-rules"),i=a("../../options/optimization-level").OptimizationLevel,j=a("../../writer/one-time").body,k=a("../../writer/one-time").rules,l=a("../../tokenizer/token");b.exports=d},{"../../options/optimization-level":63,"../../tokenizer/token":82,"../../writer/one-time":96,"../level-1/sort-selectors":15,"../level-1/tidy-rules":18,"./is-mergeable":25,"./properties/optimize":36}],27:[function(a,b,c){function d(a,b){for(var c=b.options.level[k.Two].mergeSemantically,d=b.cache.specificity,g={},i=[],m=a.length-1;m>=0;m--){var n=a[m];if(n[0]==l.NESTED_BLOCK){var o=j(n[1]),p=g[o];p||(p=[],g[o]=p),p.push(m)}}for(var q in g){var r=g[q];a:for(var s=r.length-1;s>0;s--){var t=r[s],u=a[t],v=r[s-1],w=a[v];b:for(var x=1;x>=-1;x-=2){for(var y=1==x,z=y?t+1:v-1,A=y?v:t,B=y?1:-1,C=y?u:w,D=y?w:u,E=h(C);z!=A;){var F=h(a[z]);if(z+=B,!(c&&e(E,F,d)||f(E,F,d)))continue b}D[2]=y?C[2].concat(D[2]):D[2].concat(C[2]),C[2]=[],i.push(D);continue a}}}return i}function e(a,b,c){var d,e,f,h,j,k,l,m;for(j=0,k=a.length;j<k;j++)for(d=a[j],e=d[5],l=0,m=b.length;l<m;l++)if(f=b[l],h=f[5],i(e,h,!0)&&!g(d,f,c))return!1;return!0}var f=a("./reorderable").canReorder,g=a("./reorderable").canReorderSingle,h=a("./extract-properties"),i=a("./rules-overlap"),j=a("../../writer/one-time").rules,k=a("../../options/optimization-level").OptimizationLevel,l=a("../../tokenizer/token");b.exports=d},{"../../options/optimization-level":63,"../../tokenizer/token":82,"../../writer/one-time":96,"./extract-properties":23,"./reorderable":46,"./rules-overlap":50}],28:[function(a,b,c){function d(a){return/\.|\*| :/.test(a)}function e(a){var b=n(a[1]);return b.indexOf("__")>-1||b.indexOf("--")>-1}function f(a){return a.replace(/--[^ ,>\+~:]+/g,"")}function g(a,b){var c=f(n(a[1]));for(var d in b){var e=b[d],g=f(n(e[1]));(g.indexOf(c)>-1||c.indexOf(g)>-1)&&delete b[d]}}function h(a,b){for(var c=b.options,f=c.level[l.Two].mergeSemantically,h=c.compatibility.selectors.adjacentSpace,p=c.level[l.One].selectorsSortingMethod,q=c.compatibility.selectors.mergeablePseudoClasses,r=c.compatibility.selectors.mergeablePseudoElements,s={},t=a.length-1;t>=0;t--){var u=a[t];if(u[0]==o.RULE){u[2].length>0&&!f&&d(n(u[1]))&&(s={}),u[2].length>0&&f&&e(u)&&g(u,s);var v=m(u[2]),w=s[v];w&&i(n(u[1]),q,r)&&i(n(w[1]),q,r)&&(u[2].length>0?(u[1]=k(w[1].concat(u[1]),!1,h,!1,b.warnings),u[1]=u[1].length>1?j(u[1],p):u[1]):u[1]=w[1].concat(u[1]),w[2]=[],s[v]=null),s[m(u[2])]=u}}}var i=a("./is-mergeable"),j=a("../level-1/sort-selectors"),k=a("../level-1/tidy-rules"),l=a("../../options/optimization-level").OptimizationLevel,m=a("../../writer/one-time").body,n=a("../../writer/one-time").rules,o=a("../../tokenizer/token");b.exports=h},{"../../options/optimization-level":63,"../../tokenizer/token":82,"../../writer/one-time":96,"../level-1/sort-selectors":15,"../level-1/tidy-rules":18,"./is-mergeable":25}],29:[function(a,b,c){function d(a,b){var c,d=b.cache.specificity,j={},k=[];for(c=a.length-1;c>=0;c--)if(a[c][0]==i.RULE&&0!==a[c][2].length){var l=h(a[c][1]);j[l]=[c].concat(j[l]||[]),2==j[l].length&&k.push(l)}for(c=k.length-1;c>=0;c--){var m=j[k[c]];a:for(var n=m.length-1;n>0;n--){var o=m[n-1],p=a[o],q=m[n],r=a[q];b:for(var s=1;s>=-1;s-=2){for(var t=1==s,u=t?o+1:q-1,v=t?q:o,w=t?1:-1,x=t?p:r,y=t?r:p,z=f(x);u!=v;){var A=f(a[u]);u+=w;var B=t?e(z,A,d):e(A,z,d);if(!B&&!t)continue a;if(!B&&t)continue b}t?(Array.prototype.push.apply(x[2],y[2]),y[2]=x[2]):Array.prototype.push.apply(y[2],x[2]),g(y[2],!0,!0,b),x[2]=[]}}}}var e=a("./reorderable").canReorder,f=a("./extract-properties"),g=a("./properties/optimize"),h=a("../../writer/one-time").rules,i=a("../../tokenizer/token");b.exports=d},{"../../tokenizer/token":82,"../../writer/one-time":96,"./extract-properties":23,"./properties/optimize":36,"./reorderable":46}],30:[function(a,b,c){function d(a){for(var b=0,c=a.length;b<c;b++){var e=a[b],f=!1;switch(e[0]){case s.RULE:f=0===e[1].length||0===e[2].length;break;case s.NESTED_BLOCK:d(e[2]),f=0===e[2].length;break;case s.AT_RULE_BLOCK:f=0===e[2].length}f&&(a.splice(b,1),b--,c--)}}function e(a,b){for(var c=0,d=a.length;c<d;c++){var e=a[c];if(e[0]==s.NESTED_BLOCK){var f=/@(-moz-|-o-|-webkit-)?keyframes/.test(e[1][0][1]);g(e[2],b,!f)}}}function f(a,b){for(var c=0,d=a.length;c<d;c++){var e=a[c];switch(e[0]){case s.RULE:q(e[2],!0,!0,b);break;case s.NESTED_BLOCK:f(e[2],b)}}}function g(a,b,c){var q,s,t=b.options.level[r.Two];if(e(a,b),f(a,b),t.removeDuplicateRules&&o(a,b),t.mergeAdjacentRules&&h(a,b),t.reduceNonAdjacentRules&&l(a,b),t.mergeNonAdjacentRules&&"body"!=t.mergeNonAdjacentRules&&k(a,b),t.mergeNonAdjacentRules&&"selector"!=t.mergeNonAdjacentRules&&j(a,b),t.restructureRules&&t.mergeAdjacentRules&&c&&(p(a,b),h(a,b)),t.restructureRules&&!t.mergeAdjacentRules&&c&&p(a,b),t.removeDuplicateFontRules&&m(a,b),t.removeDuplicateMediaBlocks&&n(a,b),t.mergeMedia)for(q=i(a,b),s=q.length-1;s>=0;s--)g(q[s][2],b,!1);return d(a),a}var h=a("./merge-adjacent"),i=a("./merge-media-queries"),j=a("./merge-non-adjacent-by-body"),k=a("./merge-non-adjacent-by-selector"),l=a("./reduce-non-adjacent"),m=a("./remove-duplicate-font-at-rules"),n=a("./remove-duplicate-media-queries"),o=a("./remove-duplicates"),p=a("./restructure"),q=a("./properties/optimize"),r=a("../../options/optimization-level").OptimizationLevel,s=a("../../tokenizer/token");b.exports=g},{"../../options/optimization-level":63,"../../tokenizer/token":82,"./merge-adjacent":26,"./merge-media-queries":27,"./merge-non-adjacent-by-body":28,"./merge-non-adjacent-by-selector":29,"./properties/optimize":36,"./reduce-non-adjacent":42,"./remove-duplicate-font-at-rules":43,"./remove-duplicate-media-queries":44,"./remove-duplicates":45,"./restructure":49}],31:[function(a,b,c){function d(a,b,c){var d,f,g,h=b.value.length,i=c.value.length,j=Math.max(h,i),k=Math.min(h,i)-1;for(g=0;g<j;g++)if(d=b.value[g]&&b.value[g][1]||d,f=c.value[g]&&c.value[g][1]||f,d!=e.COMMA&&f!=e.COMMA&&!a(d,f,g,g<=k))return!1;return!0}var e=a("../../../tokenizer/marker");b.exports=d},{"../../../tokenizer/marker":81}],32:[function(a,b,c){function d(a,b){var c=e(b);return f(a,c)||g(a,c)}function e(a){return function(b){return a.name===b.name}}function f(a,b){return a.components.filter(b)[0]}function g(a,b){var c,d,e,g;if(h[a.name].shorthandComponents)for(e=0,g=a.components.length;e<g;e++)if(c=a.components[e],d=f(c,b))return d}var h=a("../compactable");b.exports=d},{"../compactable":22}],33:[function(a,b,c){function d(a){for(var b=a.value.length-1;b>=0;b--)if("inherit"==a.value[b][1])return!0;return!1}b.exports=d},{}],34:[function(a,b,c){function d(a,b,c){return e(a,b)||!c&&!!g[a.name].shorthandComponents&&f(a,b)}function e(a,b){var c=g[a.name];return"components"in c&&c.components.indexOf(b.name)>-1}function f(a,b){return a.components.some(function(a){return e(a,b)})}var g=a("../compactable");b.exports=d},{"../compactable":22}],35:[function(a,b,c){function d(a){var b;for(var c in a){if(void 0!==b&&a[c].important!=b)return!0;b=a[c].important}return!1}function e(a,b){var c,d,e,f,g=[];for(f in a)c=a[f],d=c.all[c.position],e=d[b][d[b].length-1],Array.prototype.push.apply(g,e);return g}function f(a,b,c,d){var f,g,h,p,q=l[c],r=[o.PROPERTY,[o.PROPERTY_NAME,c],[o.PROPERTY_VALUE,q.defaultValue]],s=n(r);s.shorthand=!0,s.dirty=!0,k([s],d,[]);for(var t=0,u=q.components.length;t<u;t++){var v=b[q.components[t]];if(j(v))return;if(h=l[v.name].canOverride,!i(h.bind(null,d),s.components[t],v))return;s.components[t]=m(v),s.important=v.important,p=v.all}for(var w in b)b[w].unused=!0;f=e(b,1),r[1].push(f),g=e(b,2),r[2].push(g),s.position=p.length,s.all=p,s.all.push(r),a.push(s)}function g(a,b,c,e){var g=a[b];for(var h in c)if(void 0===g||h!=g.name){var i=l[h],j=c[h];i.components.length>Object.keys(j).length?delete c[h]:d(j)||f(a,j,h,e)}}function h(a,b){var c,d,e,f,h,i,j,k={};if(!(a.length<3)){for(f=0,h=a.length;f<h;f++)if(e=a[f],!e.unused&&!e.hack&&!e.block&&(c=l[e.name])&&c.componentOf)if(e.shorthand)g(a,f,k,b);else for(i=0,j=c.componentOf.length;i<j;i++)d=c.componentOf[i],k[d]=k[d]||{},k[d][e.name]=e;g(a,f,k,b)}}var i=a("./every-values-pair"),j=a("./has-inherit"),k=a("./populate-components"),l=a("../compactable"),m=a("../clone").deep,n=a("../../wrap-for-optimizing").single,o=a("../../../tokenizer/token");b.exports=h},{"../../../tokenizer/token":82,"../../wrap-for-optimizing":57,"../clone":21,"../compactable":22,"./every-values-pair":31,"./has-inherit":33,"./populate-components":39}],36:[function(a,b,c){function d(a,b,c,m){var n,o,p,q=i(a,!1);for(g(q,m.validator,m.warnings),o=0,p=q.length;o<p;o++)n=q[o],n.block&&d(n.value[0][1],b,c,m);b&&m.options.level[l.Two].overrideProperties&&f(q,c,m.options.compatibility,m.validator),c&&m.options.level[l.Two].mergeIntoShorthands&&e(q,m.validator),k(q,h),j(q)}var e=a("./merge-into-shorthands"),f=a("./override-properties"),g=a("./populate-components"),h=a("../restore-with-components"),i=a("../../wrap-for-optimizing").all,j=a("../../remove-unused"),k=a("../../restore-from-optimizing"),l=a("../../../options/optimization-level").OptimizationLevel;b.exports=d},{"../../../options/optimization-level":63,"../../remove-unused":54,"../../restore-from-optimizing":55,"../../wrap-for-optimizing":57,"../restore-with-components":47,"./merge-into-shorthands":35,"./override-properties":37,"./populate-components":39}],37:[function(a,b,c){function d(a,b){for(var c=0;c<a.components.length;c++){var d=a.components[c],e=B[d.name],f=e&&e.canOverride||f.sameValue,g=E(d);if(g.value=[[G.PROPERTY_VALUE,e.defaultValue]],!w(f.bind(null,b),g,d))return!0}return!1}function e(a,b){b.unused=!0,j(b,k(a)),a.value=b.value}function f(a,b){b.unused=!0,a.multiplex=!0,a.value=b.value}function g(a,b){b.unused=!0,a.value=b.value}function h(a,b){b.multiplex?f(a,b):a.multiplex?e(a,b):g(a,b)}function i(a,b){b.unused=!0;for(var c=0,d=a.components.length;c<d;c++)h(a.components[c],b.components[c],a.multiplex)}function j(a,b){a.multiplex=!0;for(var c=0,d=a.components.length;c<d;c++){var e=a.components[c];if(!e.multiplex)for(var f=e.value.slice(0),g=1;g<b;g++)e.value.push([G.PROPERTY_VALUE,H.COMMA]),Array.prototype.push.apply(e.value,f)}}function k(a){for(var b=0,c=0,d=a.value.length;c<d;c++)a.value[c][1]==H.COMMA&&b++;return b+1}function l(a){return I([[G.PROPERTY,[G.PROPERTY_NAME,a.name]].concat(a.value)],0).length}function m(a,b,c){for(var d=0,e=b;e>=0&&(a[e].name!=c||a[e].unused||d++,!(d>1));e--);return d>1}function n(a,b){for(var c=0,d=a.components.length;c<d;c++)if(o(b.isValidFunction,a.components[c]))return!0;return!1}function o(a,b){for(var c=0,d=b.value.length;c<d;c++)if(b.value[c][1]!=H.COMMA&&a(b.value[c][1]))return!0;return!1}function p(a,b){if(!a.multiplex&&!b.multiplex||a.multiplex&&b.multiplex)return!1;var c,d=a.multiplex?a:b,g=a.multiplex?b:a,h=C(d);F([h],D);var i=C(g);F([i],D);var m=l(h)+1+l(i);return a.multiplex?(c=x(h,i),e(c,i)):(c=x(i,h),j(i,k(h)),f(c,h)),F([i],D),m<=l(i)}function q(a){return a.name in B}function r(a,b){return!a.multiplex&&("background"==a.name||"background-image"==a.name)&&b.multiplex&&("background"==b.name||"background-image"==b.name)&&s(b.value)}function s(a){for(var b=t(a),c=0,d=b.length;c<d;c++)if(1==b[c].length&&"none"==b[c][0][1])return!0;return!1}function t(a){for(var b=[],c=0,d=[],e=a.length;c<e;c++){var f=a[c];f[1]==H.COMMA?(b.push(d),d=[]):d.push(f)}return b.push(d),b}function u(a,b,c,e){var f,g,l,s,t,u,C,D,E,F,G;a:for(E=a.length-1;E>=0;E--)if(g=a[E],q(g)&&!g.block){f=B[g.name].canOverride;b:for(F=E-1;F>=0;F--)if(l=a[F],q(l)&&!l.block&&!l.unused&&!g.unused&&(!l.hack||g.hack||g.important)&&(l.hack||l.important||!g.hack)&&!(l.important==g.important&&l.hack!=g.hack||v(g)||r(l,g)))if(g.shorthand&&y(g,l)){if(!g.important&&l.important)continue;if(!A([l],g.components))continue;if(!o(e.isValidFunction,l)&&n(g,e))continue;s=x(g,l),f=B[l.name].canOverride,w(f.bind(null,e),l,s)&&(l.unused=!0)}else if(g.shorthand&&z(g,l)){if(!g.important&&l.important)continue;if(!A([l],g.components))continue;if(!o(e.isValidFunction,l)&&n(g,e))continue;for(t=l.shorthand?l.components:[l],G=t.length-1;G>=0;G--)if(u=t[G],C=x(g,u),f=B[u.name].canOverride,!w(f.bind(null,e),l,C))continue b;l.unused=!0}else if(b&&l.shorthand&&!g.shorthand&&y(l,g,!0)){if(g.important&&!l.important)continue;if(!g.important&&l.important){g.unused=!0;continue}if(m(a,E-1,l.name))continue;if(n(l,e))continue;if(s=x(l,g),w(f.bind(null,e),s,g)){var H=!c.properties.backgroundClipMerging&&s.name.indexOf("background-clip")>-1||!c.properties.backgroundOriginMerging&&s.name.indexOf("background-origin")>-1||!c.properties.backgroundSizeMerging&&s.name.indexOf("background-size")>-1,I=B[g.name].nonMergeableValue===g.value[0][1];if(H||I)continue;if(!c.properties.merging&&d(l,e))continue;if(s.value[0][1]!=g.value[0][1]&&(v(l)||v(g)))continue;if(p(l,g))continue;!l.multiplex&&g.multiplex&&j(l,k(g)),h(s,g),l.dirty=!0}}else if(b&&l.shorthand&&g.shorthand&&l.name==g.name){if(!l.multiplex&&g.multiplex)continue;if(!g.important&&l.important){g.unused=!0;continue a}if(g.important&&!l.important){l.unused=!0;continue}for(G=l.components.length-1;G>=0;G--){var J=l.components[G],K=g.components[G];if(f=B[J.name].canOverride,!w(f.bind(null,e),J,K))continue a}i(l,g),l.dirty=!0}else if(b&&l.shorthand&&g.shorthand&&y(l,g)){if(!l.important&&g.important)continue;if(s=x(l,g),f=B[g.name].canOverride,!w(f.bind(null,e),s,g))continue;if(l.important&&!g.important){g.unused=!0;continue}var L=B[g.name].restore(g,B);if(L.length>1)continue;s=x(l,g),h(s,g),g.dirty=!0}else if(l.name==g.name){if(D=!0,g.shorthand)for(G=g.components.length-1;G>=0&&D;G--)u=l.components[G],C=g.components[G],f=B[C.name].canOverride,D=D&&w(f.bind(null,e),u,C);else f=B[g.name].canOverride,D=w(f.bind(null,e),l,g);if(l.important&&!g.important&&D){g.unused=!0;continue}if(!l.important&&g.important&&D){l.unused=!0;continue}if(!D)continue;l.unused=!0}}}var v=a("./has-inherit"),w=a("./every-values-pair"),x=a("./find-component-in"),y=a("./is-component-of"),z=a("./overrides-non-component-shorthand"),A=a("./vendor-prefixes").same,B=a("../compactable"),C=a("../clone").deep,C=a("../clone").deep,D=a("../restore-with-components"),E=a("../clone").shallow,F=a("../../restore-from-optimizing"),G=a("../../../tokenizer/token"),H=a("../../../tokenizer/marker"),I=a("../../../writer/one-time").property;b.exports=u},{"../../../tokenizer/marker":81,"../../../tokenizer/token":82,"../../../writer/one-time":96,"../../restore-from-optimizing":55,"../clone":21,"../compactable":22,"../restore-with-components":47,"./every-values-pair":31,"./find-component-in":32,"./has-inherit":33,"./is-component-of":34,"./overrides-non-component-shorthand":38,"./vendor-prefixes":41}],38:[function(a,b,c){function d(a,b){return a.name in e&&"overridesShorthands"in e[a.name]&&e[a.name].overridesShorthands.indexOf(b.name)>-1}var e=a("../compactable");b.exports=d},{"../compactable":22}],39:[function(a,b,c){function d(a,b,c){for(var d,g,h,i=a.length-1;i>=0;i--){var j=a[i],k=e[j.name];if(k&&k.shorthand){j.shorthand=!0,j.dirty=!0;try{if(j.components=k.breakUp(j,e,b),k.shorthandComponents)for(g=0,h=j.components.length;g<h;g++)d=j.components[g],d.components=e[d.name].breakUp(d,e,b)}catch(a){if(!(a instanceof f))throw a;j.components=[],c.push(a.message)}j.components.length>0?j.multiplex=j.components[0].multiplex:j.unused=!0}}}var e=a("../compactable"),f=a("../invalid-property-error");b.exports=d},{"../compactable":22,"../invalid-property-error":24}],40:[function(a,b,c){function d(a,b,c,d,f){return!!e(b,c)&&(!f||a.isValidVariable(b)===a.isValidVariable(c))}var e=a("./vendor-prefixes").same;b.exports=d},{"./vendor-prefixes":41}],41:[function(a,b,c){function d(a){for(var b,c=[];null!==(b=f.exec(a));)c.indexOf(b[0])==-1&&c.push(b[0]);return c}function e(a,b){return d(a).sort().join(",")==d(b).sort().join(",")}var f=/(?:^|\W)(\-\w+\-)/g;b.exports={unique:d,same:e}},{}],42:[function(a,b,c){function d(a,b){for(var c=b.options,d=c.compatibility.selectors.mergeablePseudoClasses,h=c.compatibility.selectors.mergeablePseudoElements,j={},k=[],m=a.length-1;m>=0;m--){var o=a[m];if(o[0]==l.RULE&&0!==o[2].length)for(var p=n(o[1]),q=o[1].length>1&&i(p,d,h),r=e(o[1]),s=q?[p].concat(r):[p],t=0,u=s.length;t<u;t++){var v=s[t];j[v]?k.push(v):j[v]=[],j[v].push({where:m,list:r,isPartial:q&&t>0,isComplex:q&&0===t})}}f(a,k,j,c,b),g(a,j,c,b)}function e(a){for(var b=[],c=0;c<a.length;c++)b.push([a[c][1]]);return b}function f(a,b,c,d,e){function f(a,b){return l[a].isPartial&&0===b.length}function g(a,b,c,d){l[c-d-1].isPartial||(a[2]=b)}for(var i=0,j=b.length;i<j;i++){var k=b[i],l=c[k];h(a,l,{filterOut:f,callback:g},d,e)}}function g(a,b,c,d){function e(a){return k.data[a].where<k.intoPosition}function f(a,b,c,d){0===d&&k.reducedBodies.push(b)}var g=c.compatibility.selectors.mergeablePseudoClasses,j=c.compatibility.selectors.mergeablePseudoElements,k={};a:for(var l in b){var n=b[l];if(n[0].isComplex){var o=n[n.length-1].where,p=a[o],q=[],r=i(l,g,j)?n[0].list:[l];k.intoPosition=o,k.reducedBodies=q;for(var s=0,t=r.length;s<t;s++){var u=r[s],v=b[u];if(v.length<2)continue a;if(k.data=v,h(a,v,{filterOut:e,callback:f},c,d),m(q[q.length-1])!=m(q[0]))continue a}p[2]=q[0]}}}function h(a,b,c,d,e){for(var f=[],g=[],h=[],i=b.length-1;i>=0;i--)if(!c.filterOut(i,f)){var l=b[i].where,m=a[l],n=k(m[2]);f=f.concat(n),g.push(n),h.push(l)}j(f,!0,!1,e);for(var o=h.length,p=f.length-1,q=o-1;q>=0;)if((0===q||f[p]&&g[q].indexOf(f[p])>-1)&&p>-1)p--;else{var r=f.splice(p+1);c.callback(a[h[q]],r,o,q),q--}}var i=a("./is-mergeable"),j=a("./properties/optimize"),k=a("../../utils/clone-array"),l=a("../../tokenizer/token"),m=a("../../writer/one-time").body,n=a("../../writer/one-time").rules;b.exports=d},{"../../tokenizer/token":82,"../../utils/clone-array":84,"../../writer/one-time":96,"./is-mergeable":25,"./properties/optimize":36}],43:[function(a,b,c){function d(a){var b,c,d,h,i=[];for(d=0,h=a.length;d<h;d++)b=a[d],b[0]!=e.AT_RULE_BLOCK&&b[1][0][1]!=g||(c=f([b]),i.indexOf(c)>-1?b[2]=[]:i.push(c))}var e=a("../../tokenizer/token"),f=a("../../writer/one-time").all,g="@font-face";b.exports=d},{"../../tokenizer/token":82,"../../writer/one-time":96}],44:[function(a,b,c){function d(a){var b,c,d,h,i,j={};for(h=0,i=a.length;h<i;h++)c=a[h],c[0]==e.NESTED_BLOCK&&(d=g(c[1])+"%"+f(c[2]),b=j[d],b&&(b[2]=[]),j[d]=c)}var e=a("../../tokenizer/token"),f=a("../../writer/one-time").all,g=a("../../writer/one-time").rules;b.exports=d},{"../../tokenizer/token":82,"../../writer/one-time":96}],45:[function(a,b,c){function d(a){for(var b,c,d,h,i={},j=[],k=0,l=a.length;k<l;k++)c=a[k],c[0]==e.RULE&&(b=g(c[1]),i[b]&&1==i[b].length?j.push(b):i[b]=i[b]||[],i[b].push(k));for(k=0,l=j.length;k<l;k++){b=j[k],h=[];for(var m=i[b].length-1;m>=0;m--)c=a[i[b][m]],d=f(c[2]),h.indexOf(d)>-1?c[2]=[]:h.push(d)}}var e=a("../../tokenizer/token"),f=a("../../writer/one-time").body,g=a("../../writer/one-time").rules;b.exports=d},{"../../tokenizer/token":82,"../../writer/one-time":96}],46:[function(a,b,c){function d(a,b,c){for(var d=b.length-1;d>=0;d--)for(var f=a.length-1;f>=0;f--)if(!e(a[f],b[d],c))return!1;return!0}function e(a,b,c){var d=a[0],e=a[1],q=a[2],r=a[5],s=a[6],t=b[0],u=b[1],v=b[2],w=b[5],x=b[6];return!("font"==d&&"line-height"==t||"font"==t&&"line-height"==d)&&((!o.test(d)||!o.test(t))&&(!(q==v&&g(d)==g(t)&&f(d)^f(t))&&(("border"!=q||!p.test(v)||!("border"==d||d==v||e!=u&&h(d,t)))&&(("border"!=v||!p.test(q)||!("border"==t||t==q||e!=u&&h(d,t)))&&(("border"!=q||"border"!=v||d==t||!(i(d)&&j(t)||j(d)&&i(t)))&&(q!=v||(!(d!=t||q!=v||e!=u&&!k(e,u))||(d!=t&&q==v&&d!=q&&t!=v||(d!=t&&q==v&&e==u||(!(!x||!s||l(q)||l(v)||m(w,r,!1))||!n(r,w,c)))))))))))}function f(a){return/^\-(?:moz|webkit|ms|o)\-/.test(a)}function g(a){return a.replace(/^\-(?:moz|webkit|ms|o)\-/,"")}function h(a,b){return a.split("-").pop()==b.split("-").pop()}function i(a){return"border-top"==a||"border-right"==a||"border-bottom"==a||"border-left"==a}function j(a){return"border-color"==a||"border-style"==a||"border-width"==a}function k(a,b){return f(a)&&f(b)&&a.split("-")[1]!=b.split("-")[2]}function l(a){return"font"==a||"line-height"==a||"list-style"==a}var m=a("./rules-overlap"),n=a("./specificities-overlap"),o=/align\-items|box\-align|box\-pack|flex|justify/,p=/^border\-(top|right|bottom|left|color|style|width|radius)/;b.exports={canReorder:d,canReorderSingle:e}},{"./rules-overlap":50,"./specificities-overlap":51}],47:[function(a,b,c){function d(a){var b=e[a.name];return b&&b.shorthand?b.restore(a,e):a.value}var e=a("./compactable");b.exports=d},{"./compactable":22}],48:[function(a,b,c){function d(a){for(var b=0,c=a.length;b<c;b++){var d=a[b][1];if("inherit"!=d&&d!=l.COMMA&&d!=l.FORWARD_SLASH)return!1}return!0}function e(a,b,c){function e(a){Array.prototype.unshift.apply(j,a.value)}function f(a){var c=b[a.name];return c.doubleValues&&1==c.defaultValue.length?a.value[0][1]==c.defaultValue[0]&&(!a.value[1]||a.value[1][1]==c.defaultValue[0]):c.doubleValues&&1!=c.defaultValue.length?a.value[0][1]==c.defaultValue[0]&&(a.value[1]?a.value[1][1]:a.value[0][1])==c.defaultValue[1]:a.value[0][1]==c.defaultValue}for(var g,h,i=a.components,j=[],m=i.length-1;m>=0;m--){var n=i[m],o=f(n);if("background-clip"==n.name){var p=i[m-1],q=f(p);g=n.value[0][1]==p.value[0][1],h=!g&&(q&&!o||!q&&!o||!q&&o&&n.value[0][1]!=p.value[0][1]),g?e(p):h&&(e(n),e(p)),m--}else if("background-size"==n.name){var r=i[m-1],s=f(r);g=!s&&o,h=!g&&(s&&!o||!s&&!o),g?e(r):h?(e(n),j.unshift([k.PROPERTY_VALUE,l.FORWARD_SLASH]),e(r)):1==r.value.length&&e(r),m--}else{if(o||b[n.name].multiplexLastOnly&&!c)continue;e(n)}}return 0===j.length&&1==a.value.length&&"0"==a.value[0][1]&&j.push(a.value[0]),0===j.length&&j.push([k.PROPERTY_VALUE,b[a.name].defaultValue]),d(j)?[j[0]]:j}function f(a,b){if(a.multiplex){for(var c=j(a),d=j(a),e=0;e<4;e++){var f=a.components[e],h=j(a);h.value=[f.value[0]],c.components.push(h);var i=j(a);i.value=[f.value[1]||f.value[0]],d.components.push(i)}var m=g(c),n=g(d);return m.length!=n.length||m[0][1]!=n[0][1]||m.length>1&&m[1][1]!=n[1][1]||m.length>2&&m[2][1]!=n[2][1]||m.length>3&&m[3][1]!=n[3][1]?m.concat([[k.PROPERTY_VALUE,l.FORWARD_SLASH]]).concat(n):m}return g(a)}function g(a){var b=a.components,c=b[0].value[0],d=b[1].value[0],e=b[2].value[0],f=b[3].value[0];return c[1]==d[1]&&c[1]==e[1]&&c[1]==f[1]?[c]:c[1]==e[1]&&d[1]==f[1]?[c,d]:d[1]==f[1]?[c,d,e]:[c,d,e,f]}function h(a){return function(b,c){if(!b.multiplex)return a(b,c,!0);var d,e,f=0,g=[],h={};for(d=0,e=b.components[0].value.length;d<e;d++)b.components[0].value[d][1]==l.COMMA&&f++;for(d=0;d<=f;d++){for(var i=j(b),m=0,n=b.components.length;m<n;m++){var o=b.components[m],p=j(o);i.components.push(p);for(var q=h[p.name]||0,r=o.value.length;q<r;q++){if(o.value[q][1]==l.COMMA){h[p.name]=q+1;break}p.value.push(o.value[q])}}var s=d==f,t=a(i,c,s);Array.prototype.push.apply(g,t),d<f&&g.push([k.PROPERTY_VALUE,l.COMMA])}return g}}function i(a,b){for(var c=a.components,e=[],f=c.length-1;f>=0;f--){var g=c[f],h=b[g.name];g.value[0][1]!=h.defaultValue&&e.unshift(g.value[0])}return 0===e.length&&e.push([k.PROPERTY_VALUE,b[a.name].defaultValue]),d(e)?[e[0]]:e}var j=a("./clone").shallow,k=a("../../tokenizer/token"),l=a("../../tokenizer/marker");b.exports={background:e,borderRadius:f,fourValues:g,multiplex:h,withoutDefaults:i}},{"../../tokenizer/marker":81,"../../tokenizer/token":82,"./clone":21}],49:[function(a,b,c){function d(a,b){return a>b?1:-1}function e(a,b){var c=l(a);return c[5]=c[5].concat(b[5]),c}function f(a,b){function c(a,b,c){for(var d=c.length-1;d>=0;d--){var e=c[d][0],g=f(b,e);if(F[g].length>1&&y(a,F[g])){l(g);break}}}function f(a,b){var c=o(b);return F[c]=F[c]||[],F[c].push([a,b]),c}function l(a){var b,c=a.split(I),d=[];for(var e in F){var f=e.split(I);for(b=f.length-1;b>=0;b--)if(c.indexOf(f[b])>-1){d.push(e);break}}for(b=d.length-1;b>=0;b--)delete F[d[b]]}function o(a){for(var b=[],c=0,d=a.length;c<d;c++)b.push(n(a[c][1]));return b.join(I)}function p(a){for(var b=[],c=[],d=a.length-1;d>=0;d--)i(n(a[d][1]),A,B)&&(c.unshift(a[d]),a[d][2].length>0&&b.indexOf(a[d])==-1&&b.push(a[d]));return b.length>1?c:[]}function q(a,b){var d=b[0],e=b[1],f=b[4],g=d.length+e.length+1,h=[],i=[],k=p(D[f]);if(!(k.length<2)){var l=s(k,g,1),m=l[0];if(m[1]>0)return c(a,b,l);for(var n=m[0].length-1;n>=0;n--)h=m[0][n][1].concat(h),i.unshift(m[0][n]);h=j(h),v(a,[b],h,i)}}function r(a,b){return a[1]>b[1]}function s(a,b,c){return t(a,b,c,H-1).sort(r)}function t(a,b,c,d){var e=[[a,u(a,b,c)]];if(a.length>2&&d>0)for(var f=a.length-1;f>=0;f--){var g=Array.prototype.slice.call(a,0);g.splice(f,1),e=e.concat(t(g,b,c,d-1))}return e}function u(a,b,c){for(var d=0,e=a.length-1;e>=0;e--)d+=a[e][2].length>c?n(a[e][1]).length:-1;return d-(a.length-1)*b+1}function v(b,c,d,e){var f,g,h,i,j=[];for(f=e.length-1;f>=0;f--){var l=e[f];for(g=l[2].length-1;g>=0;g--){var n=l[2][g];for(h=0,i=c.length;h<i;h++){var o=c[h],p=n[1][1],q=o[0],r=o[4];if(p==q&&m([n])==r){l[2].splice(g,1);break}}}}for(f=c.length-1;f>=0;f--)j.unshift(c[f][3]);var s=[k.RULE,d,j];a.splice(b,0,s)}function w(a,b){var c=b[4],d=D[c];d&&d.length>1&&(x(a,b)||q(a,b))}function x(a,b){var c,d,e=[],f=[],g=b[4],h=p(D[g]);if(!(h.length<2)){a:for(var i in D){var j=D[i];for(c=h.length-1;c>=0;c--)if(j.indexOf(h[c])==-1)continue a;e.push(i)}if(e.length<2)return!1;for(c=e.length-1;c>=0;c--)for(d=E.length-1;d>=0;d--)if(E[d][4]==e[c]){f.unshift([E[d],h]);break}return y(a,f)}}function y(a,b){for(var c,d=0,e=[],f=b.length-1;f>=0;f--){c=b[f][0];d+=c[4].length+(f>0?1:0),e.push(c)}var g=b[0][1],h=s(g,d,e.length)[0];if(h[1]>0)return!1;var i=[],k=[];for(f=h[0].length-1;f>=0;f--)i=h[0][f][1].concat(i),k.unshift(h[0][f]);for(i=j(i),v(a,e,i,k),f=e.length-1;f>=0;f--){c=e[f];var l=E.indexOf(c);delete D[c[4]],l>-1&&G.indexOf(l)==-1&&G.push(l)}return!0}for(var z=b.options,A=z.compatibility.selectors.mergeablePseudoClasses,B=z.compatibility.selectors.mergeablePseudoElements,C=b.cache.specificity,D={},E=[],F={},G=[],H=2,I="%",J=a.length-1;J>=0;J--){var K,L,M,N,O,P=a[J];if(P[0]==k.RULE)K=!0;else{if(P[0]!=k.NESTED_BLOCK)continue;K=!1}var Q=E.length,R=h(P);G=[];var S=[];for(L=R.length-1;L>=0;L--)for(M=L-1;M>=0;M--)if(!g(R[L],R[M],C)){S.push(L);break}for(L=R.length-1;L>=0;L--){var T=R[L],U=!1;for(M=0;M<Q;M++){var V=E[M];G.indexOf(M)!=-1||g(T,V,C)||function(a,b,c){if(a[0]!=b[0])return!1;var d=b[4],e=D[d]
+;return e&&e.indexOf(c)>-1}(T,V,P)||(w(J+1,V),G.indexOf(M)==-1&&(G.push(M),delete D[V[4]])),U||(U=T[0]==V[0]&&T[1]==V[1])&&(O=M)}if(K&&!(S.indexOf(L)>-1)){var W=T[4];D[W]=D[W]||[],D[W].push(P),U?E[O]=e(E[O],T):E.push(T)}}for(G=G.sort(d),L=0,N=G.length;L<N;L++){var X=G[L]-L;E.splice(X,1)}}for(var Y=a[0]&&a[0][0]==k.AT_RULE&&0===a[0][1].indexOf("@charset")?1:0;Y<a.length-1;Y++){var Z=a[Y][0]===k.AT_RULE&&0===a[Y][1].indexOf("@import"),$=a[Y][0]===k.COMMENT;if(!Z&&!$)break}for(J=0;J<E.length;J++)w(Y,E[J])}var g=a("./reorderable").canReorderSingle,h=a("./extract-properties"),i=a("./is-mergeable"),j=a("./tidy-rule-duplicates"),k=a("../../tokenizer/token"),l=a("../../utils/clone-array"),m=a("../../writer/one-time").body,n=a("../../writer/one-time").rules;b.exports=f},{"../../tokenizer/token":82,"../../utils/clone-array":84,"../../writer/one-time":96,"./extract-properties":23,"./is-mergeable":25,"./reorderable":46,"./tidy-rule-duplicates":53}],50:[function(a,b,c){function d(a,b,c){var d,f,g,h,i,j;for(g=0,h=a.length;g<h;g++)for(d=a[g][1],i=0,j=b.length;i<j;i++){if(f=b[i][1],d==f)return!0;if(c&&e(d)==e(f))return!0}return!1}function e(a){return a.replace(f,"")}var f=/\-\-.+$/;b.exports=d},{}],51:[function(a,b,c){function d(a,b,c){var d,f,g,h,i,j;for(g=0,h=a.length;g<h;g++)for(d=e(a[g][1],c),i=0,j=b.length;i<j;i++)if(f=e(b[i][1],c),d[0]===f[0]&&d[1]===f[1]&&d[2]===f[2])return!0;return!1}function e(a,b){var c;return a in b||(b[a]=c=f(a)),c||b[a]}var f=a("./specificity");b.exports=d},{"./specificity":52}],52:[function(a,b,c){function d(a){var b,c,d,i,k,l,m,n=[0,0,0],o=0,p=!1,q=!1;for(l=0,m=a.length;l<m;l++){if(b=a[l],c);else if(b!=f.SINGLE_QUOTE||i||d)if(b==f.SINGLE_QUOTE&&!i&&d)d=!1;else if(b!=f.DOUBLE_QUOTE||i||d)if(b==f.DOUBLE_QUOTE&&i&&!d)i=!1;else{if(d||i)continue;o>0&&!p||(b==f.OPEN_ROUND_BRACKET?o++:b==f.CLOSE_ROUND_BRACKET&&1==o?(o--,p=!1):b==f.CLOSE_ROUND_BRACKET?o--:b==g.HASH?n[0]++:b==g.DOT||b==f.OPEN_SQUARE_BRACKET?n[1]++:b!=g.PSEUDO||q||e(a,l)?b==g.PSEUDO?p=!0:(0===l||k)&&h.test(b)&&n[2]++:(n[1]++,p=!1))}else i=!0;else d=!0;c=b==f.BACK_SLASH,q=b==g.PSEUDO,k=!c&&j.test(b)}return n}function e(a,b){return a.indexOf(i,b)===b}var f=a("../../tokenizer/marker"),g={ADJACENT_SIBLING:"+",DESCENDANT:">",DOT:".",HASH:"#",NON_ADJACENT_SIBLING:"~",PSEUDO:":"},h=/[a-zA-Z]/,i=":not(",j=/[\s,\(>~\+]/;b.exports=d},{"../../tokenizer/marker":81}],53:[function(a,b,c){function d(a,b){return a[1]>b[1]?1:-1}function e(a){for(var b=[],c=[],e=0,f=a.length;e<f;e++){var g=a[e];c.indexOf(g[1])==-1&&(c.push(g[1]),b.push(g))}return b.sort(d)}b.exports=e},{}],54:[function(a,b,c){function d(a){for(var b=a.length-1;b>=0;b--){var c=a[b];c.unused&&c.all.splice(c.position,1)}}b.exports=d},{}],55:[function(a,b,c){function d(a,b){var c,d,g,h;for(h=a.length-1;h>=0;h--)c=a[h],c.unused||(c.dirty||c.important||c.hack)&&(b?(d=b(c),c.value=d):d=c.value,c.important&&e(c),c.hack&&f(c),"all"in c&&(g=c.all[c.position],g[1][1]=c.name,g.splice(2,g.length-1),Array.prototype.push.apply(g,d)))}function e(a){a.value[a.value.length-1][1]+=k}function f(a){a.hack==g.UNDERSCORE?a.name=l+a.name:a.hack==g.ASTERISK?a.name=i+a.name:a.hack==g.BACKSLASH?a.value[a.value.length-1][1]+=j:a.hack==g.BANG&&(a.value[a.value.length-1][1]+=h.SPACE+m)}var g=a("./hack"),h=a("../tokenizer/marker"),i="*",j="\\9",k="!important",l="_",m="!ie";b.exports=d},{"../tokenizer/marker":81,"./hack":9}],56:[function(a,b,c){function d(a,b){return!(!o(a)||!o(b))&&a.substring(0,a.indexOf("("))===b.substring(0,b.indexOf("("))}function e(a){return Y.test(a)}function f(a){return X["background-attachment"].indexOf(a)>-1}function g(a){return X["background-clip"].indexOf(a)>-1}function h(a){return X["background-repeat"].indexOf(a)>-1}function i(a){return X["background-origin"].indexOf(a)>-1}function j(a){var b,c,d;if("inherit"===a)return!0;for(b=a.split(" "),c=0,d=b.length;c<d;c++)if(""!==b[c]&&!k(b[c]))return!1;return!0}function k(a){return X["background-position"].indexOf(a)>-1||U.test(a)}function l(a){return X["background-size"].indexOf(a)>-1||T.test(a)}function m(a){return x(a)||n(a)}function n(a){return r(a)||y(a)||s(a)}function o(a){return!V.test(a)&&S.test(a)}function p(a){return!V.test(a)&&Q.test(a)}function q(a){return W.indexOf(a)>-1}function r(a){return(4===a.length||7===a.length)&&"#"===a[0]}function s(a){return a.length>0&&0===a.indexOf("hsla(")&&a.indexOf(")")===a.length-1}function t(a){return"none"==a||"inherit"==a||D(a)}function u(a,b,c){return X[a].indexOf(b)>-1||c&&q(b)}function v(a){return X["list-style-type"].indexOf(a)>-1}function w(a){return X["list-style-position"].indexOf(a)>-1}function x(a){return"auto"!==a&&("transparent"===a||"inherit"===a||/^[a-zA-Z]+$/.test(a))}function y(a){return a.length>0&&0===a.indexOf("rgba(")&&a.indexOf(")")===a.length-1}function z(a){return X["*-style"].indexOf(a)>-1}function A(a,b){return C(a,b)||m(b)||q(b)}function B(a,b){return a.test(b)}function C(a,b){return a.test(b)}function D(a){return V.test(a)}function E(a){return R.test(a)}function F(a){return/^-([A-Za-z0-9]|-)*$/gi.test(a)}function G(a,b){return B(a,b)||X.width.indexOf(b)>-1}function H(a){return"auto"==a||q(a)||a.length>0&&a==""+parseInt(a)}function I(a){var b=J.slice(0).filter(function(b){return!(b in a.units)||a.units[b]===!0}),c="(\\-?\\.?\\d+\\.?\\d*("+b.join("|")+"|)|auto|inherit)",I=new RegExp("^"+c+"$","i"),K=new RegExp("^(none|"+X.width.join("|")+"|"+c+"|"+N+"|"+L+"|"+M+")$","i");return{areSameFunction:d,colorOpacity:a.colors.opacity,hasNoVendorPrefix:e,isValidBackgroundAttachment:f,isValidBackgroundClip:g,isValidBackgroundOrigin:i,isValidBackgroundPosition:j,isValidBackgroundPositionPart:k,isValidBackgroundRepeat:h,isValidBackgroundSizePart:l,isValidColor:m,isValidColorValue:n,isValidFunction:o,isValidFunctionWithoutVendorPrefix:p,isValidGlobalValue:q,isValidHexColor:r,isValidHslaColor:s,isValidImage:t,isValidKeywordValue:u,isValidListStylePosition:w,isValidListStyleType:v,isValidNamedColor:x,isValidRgbaColor:y,isValidStyle:z,isValidTextShadow:A.bind(null,I),isValidUnit:B.bind(null,K),isValidUnitWithoutFunction:C.bind(null,I),isValidUrl:D,isValidVariable:E,isValidVendorPrefixedValue:F,isValidWidth:G.bind(null,I),isValidZIndex:H}}var J=["%","ch","cm","em","ex","in","mm","pc","pt","px","rem","vh","vm","vmax","vmin","vw"],K="(\\-?\\.?\\d+\\.?\\d*("+J.join("|")+"|)|auto|inherit)",L="[A-Z]+(\\-|[A-Z]|[0-9])+\\(.*?\\)",M="\\-(\\-|[A-Z]|[0-9])+\\(.*?\\)",N="var\\(\\-\\-[^\\)]+\\)",O="("+N+"|"+L+"|"+M+")",P="("+K+"|(\\-moz\\-|\\-webkit\\-)?calc\\([^\\)]+\\))",Q=new RegExp("^"+L+"$","i"),R=new RegExp("^"+N+"$","i"),S=new RegExp("^"+O+"$","i"),T=new RegExp("^"+K+"$","i"),U=new RegExp("^"+P+"$","i"),V=/^url\([\s\S]+\)$/i,W=["inherit","initial","unset"],X={"*-style":["auto","dashed","dotted","double","groove","hidden","inset","none","outset","ridge","solid"],"background-attachment":["fixed","inherit","local","scroll"],"background-clip":["border-box","content-box","inherit","padding-box","text"],"background-origin":["border-box","content-box","inherit","padding-box"],"background-position":["bottom","center","left","right","top"],"background-repeat":["no-repeat","inherit","repeat","repeat-x","repeat-y","round","space"],"background-size":["auto","cover","contain"],"border-collapse":["collapse","inherit","separate"],bottom:["auto"],clear:["both","left","none","right"],cursor:["all-scroll","auto","col-resize","crosshair","default","e-resize","help","move","n-resize","ne-resize","no-drop","not-allowed","nw-resize","pointer","progress","row-resize","s-resize","se-resize","sw-resize","text","vertical-text","w-resize","wait"],display:["block","inline","inline-block","inline-table","list-item","none","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group"],float:["left","none","right"],left:["auto"],"font-style":["italic","normal","oblique"],"font-weight":["100","200","300","400","500","600","700","800","900","bold","bolder","lighter","normal"],"list-style-position":["inside","outside"],"list-style-type":["armenian","circle","decimal","decimal-leading-zero","disc","decimal|disc","georgian","lower-alpha","lower-greek","lower-latin","lower-roman","none","square","upper-alpha","upper-latin","upper-roman"],overflow:["auto","hidden","scroll","visible"],position:["absolute","fixed","relative","static"],right:["auto"],"text-align":["center","justify","left","left|right","right"],"text-decoration":["line-through","none","overline","underline"],"text-overflow":["clip","ellipsis"],top:["auto"],"vertical-align":["baseline","bottom","middle","sub","super","text-bottom","text-top","top"],visibility:["collapse","hidden","visible"],"white-space":["normal","nowrap","pre"],width:["inherit","initial","medium","thick","thin"]},Y=/(^|\W)-\w+\-/;b.exports=I},{}],57:[function(a,b,c){function d(a,b){var c,d,f,g=[];for(f=a.length-1;f>=0;f--)d=a[f],d[0]==p.PROPERTY&&(!b&&e(d)||(c=m(d),c.all=a,c.position=f,g.unshift(c)));return g}function e(a){var b,c,d;for(b=2,c=a.length;b<c;b++)if(d=a[b],d[0]==p.PROPERTY_VALUE&&f(d[1]))return!0;return!1}function f(a){return q.VARIABLE_REFERENCE_PATTERN.test(a)}function g(a){var b,c,d;for(c=3,d=a.length;c<d;c++)if(b=a[c],b[0]==p.PROPERTY_VALUE&&(b[1]==o.COMMA||b[1]==o.FORWARD_SLASH))return!0;return!1}function h(a){var b=!1,c=a[1][1],d=a[a.length-1];return c[0]==q.UNDERSCORE?b=n.UNDERSCORE:c[0]==q.ASTERISK?b=n.ASTERISK:d[1][0]!=q.BANG||d[1].match(q.IMPORTANT_WORD_PATTERN)?d[1].indexOf(q.BANG)>0&&!d[1].match(q.IMPORTANT_WORD_PATTERN)&&q.BANG_SUFFIX_PATTERN.test(d[1])?b=n.BANG:d[1].indexOf(q.BACKSLASH)>0&&d[1].indexOf(q.BACKSLASH)==d[1].length-q.BACKSLASH.length-1?b=n.BACKSLASH:0===d[1].indexOf(q.BACKSLASH)&&2==d[1].length&&(b=n.BACKSLASH):b=n.BANG,b}function i(a){if(a.length<3)return!1;var b=a[a.length-1];return!!q.IMPORTANT_TOKEN_PATTERN.test(b[1])||!(!q.IMPORTANT_WORD_PATTERN.test(b[1])||!q.SUFFIX_BANG_PATTERN.test(a[a.length-2][1]))}function j(a){var b=a[a.length-1],c=a[a.length-2];q.IMPORTANT_TOKEN_PATTERN.test(b[1])?b[1]=b[1].replace(q.IMPORTANT_TOKEN_PATTERN,""):(b[1]=b[1].replace(q.IMPORTANT_WORD_PATTERN,""),c[1]=c[1].replace(q.SUFFIX_BANG_PATTERN,"")),0===b[1].length&&a.pop(),0===c[1].length&&a.pop()}function k(a){a[1][1]=a[1][1].substring(1)}function l(a,b){var c=a[a.length-1];c[1]=c[1].substring(0,c[1].indexOf(b==n.BACKSLASH?q.BACKSLASH:q.BANG)).trim(),0===c[1].length&&a.pop()}function m(a){var b=i(a);b&&j(a);var c=h(a);return c==n.ASTERISK||c==n.UNDERSCORE?k(a):c!=n.BACKSLASH&&c!=n.BANG||l(a,c),{block:a[2]&&a[2][0]==p.PROPERTY_BLOCK,components:[],dirty:!1,hack:c,important:b,name:a[1][1],multiplex:a.length>3&&g(a),position:0,shorthand:!1,unused:!1,value:a.slice(2)}}var n=a("./hack"),o=a("../tokenizer/marker"),p=a("../tokenizer/token"),q={ASTERISK:"*",BACKSLASH:"\\",BANG:"!",BANG_SUFFIX_PATTERN:/!\w+$/,IMPORTANT_TOKEN:"!important",IMPORTANT_TOKEN_PATTERN:new RegExp("!important$","i"),IMPORTANT_WORD:"important",IMPORTANT_WORD_PATTERN:new RegExp("important$","i"),SUFFIX_BANG_PATTERN:/!$/,UNDERSCORE:"_",VARIABLE_REFERENCE_PATTERN:/var\(--.+\)$/};b.exports={all:d,single:m}},{"../tokenizer/marker":81,"../tokenizer/token":82,"./hack":9}],58:[function(a,b,c){function d(a){return e(g["*"],f(a))}function e(a,b){for(var c in a){var d=a[c];"object"!=typeof d||Array.isArray(d)?b[c]=c in b?b[c]:d:b[c]=e(d,b[c]||{})}return b}function f(a){if("object"==typeof a)return a;if(!/[,\+\-]/.test(a))return g[a]||g["*"];var b=a.split(","),c=b[0]in g?g[b.shift()]:g["*"];return a={},b.forEach(function(b){var c="+"==b[0],d=b.substring(1).split("."),e=d[0],f=d[1];a[e]=a[e]||{},a[e][f]=c}),e(c,a)}var g={"*":{colors:{opacity:!0},properties:{backgroundClipMerging:!0,backgroundOriginMerging:!0,backgroundSizeMerging:!0,colors:!0,ieBangHack:!1,ieFilters:!1,iePrefixHack:!1,ieSuffixHack:!1,merging:!0,shorterLengthUnits:!1,spaceAfterClosingBrace:!0,urlQuotes:!1,zeroUnits:!0},selectors:{adjacentSpace:!1,ie7Hack:!1,mergeablePseudoClasses:[":active",":after",":before",":empty",":checked",":disabled",":empty",":enabled",":first-child",":first-letter",":first-line",":first-of-type",":focus",":hover",":lang",":last-child",":last-of-type",":link",":not",":nth-child",":nth-last-child",":nth-last-of-type",":nth-of-type",":only-child",":only-of-type",":root",":target",":visited"],mergeablePseudoElements:["::after","::before","::first-letter","::first-line"]},units:{ch:!0,in:!0,pc:!0,pt:!0,rem:!0,vh:!0,vm:!0,vmax:!0,vmin:!0,vw:!0}}};g.ie11=g["*"],g.ie10=g["*"],g.ie9=e(g["*"],{properties:{ieFilters:!0,ieSuffixHack:!0}}),g.ie8=e(g.ie9,{colors:{opacity:!1},properties:{backgroundClipMerging:!1,backgroundOriginMerging:!1,backgroundSizeMerging:!1,iePrefixHack:!0,merging:!1},selectors:{mergeablePseudoClasses:[":after",":before",":first-child",":first-letter",":focus",":hover",":visited"],mergeablePseudoElements:[]},units:{ch:!1,rem:!1,vh:!1,vm:!1,vmax:!1,vmin:!1,vw:!1}}),g.ie7=e(g.ie8,{properties:{ieBangHack:!0},selectors:{ie7Hack:!0,mergeablePseudoClasses:[":first-child",":first-letter",":hover",":visited"]}}),b.exports=d},{}],59:[function(a,b,c){function d(a){var b={};return b[l.AfterAtRule]=a,b[l.AfterBlockBegins]=a,b[l.AfterBlockEnds]=a,b[l.AfterComment]=a,b[l.AfterProperty]=a,b[l.AfterRuleBegins]=a,b[l.AfterRuleEnds]=a,b[l.BeforeBlockEnds]=a,b[l.BetweenSelectors]=a,b}function e(a){var b={};return b[n.AroundSelectorRelation]=a,b[n.BeforeBlockBegins]=a,b[n.BeforeValue]=a,b}function f(a){return void 0!==a&&a!==!1&&("object"==typeof a&&"indentBy"in a&&(a=k(a,{indentBy:parseInt(a.indentBy)})),"object"==typeof a&&"indentWith"in a&&(a=k(a,{indentWith:j(a.indentWith)})),"object"==typeof a?k(o,a):"object"==typeof a?k(o,a):"string"==typeof a&&a==p?k(o,{breaks:d(!0),indentBy:2,spaces:e(!0)}):"string"==typeof a&&a==q?k(o,{breaks:{afterAtRule:!0,afterBlockBegins:!0,afterBlockEnds:!0,afterComment:!0,afterRuleEnds:!0,beforeBlockEnds:!0}}):"string"==typeof a?k(o,g(a)):o)}function g(a){return a.split(r).reduce(function(a,b){var c=b.split(s),d=c[0],e=c[1];return"breaks"==d||"spaces"==d?a[d]=h(e):"indentBy"==d||"wrapAt"==d?a[d]=parseInt(e):"indentWith"==d&&(a[d]=j(e)),a},{})}function h(a){return a.split(t).reduce(function(a,b){var c=b.split(u),d=c[0],e=c[1];return a[d]=i(e),a},{})}function i(a){switch(a){case v:case w:return!1;case x:case y:return!0;default:return a}}function j(a){switch(a){case"space":return m.Space;case"tab":return m.Tab;default:return a}}var k=a("../utils/override"),l={AfterAtRule:"afterAtRule",AfterBlockBegins:"afterBlockBegins",AfterBlockEnds:"afterBlockEnds",AfterComment:"afterComment",AfterProperty:"afterProperty",AfterRuleBegins:"afterRuleBegins",AfterRuleEnds:"afterRuleEnds",BeforeBlockEnds:"beforeBlockEnds",BetweenSelectors:"betweenSelectors"},m={Space:" ",Tab:"\t"},n={AroundSelectorRelation:"aroundSelectorRelation",BeforeBlockBegins:"beforeBlockBegins",BeforeValue:"beforeValue"},o={breaks:d(!1),indentBy:0,indentWith:m.Space,spaces:e(!1),wrapAt:!1},p="beautify",q="keep-breaks",r=";",s=":",t=",",u="=",v="false",w="off",x="true",y="on";b.exports={Breaks:l,Spaces:n,formatFrom:f}},{"../utils/override":93}],60:[function(a,b,c){(function(c){function d(a){return g(e(c.env.HTTP_PROXY||c.env.http_proxy),a||{})}function e(a){return a?{hostname:f.parse(a).hostname,port:parseInt(f.parse(a).port)}:{}}var f=a("url"),g=a("../utils/override");b.exports=d}).call(this,a("_process"))},{"../utils/override":93,_process:111,url:158}],61:[function(a,b,c){function d(a){return a||e}var e=5e3;b.exports=d},{}],62:[function(a,b,c){function d(a){return Array.isArray(a)?a:void 0===a?["local"]:a.split(",")}b.exports=d},{}],63:[function(a,b,c){function d(){}function e(a){var b=k(m,{}),c=l.Zero,d=l.One,e=l.Two;return void 0===a?(delete b[e],b):("string"==typeof a&&(a=parseInt(a)),"number"==typeof a&&a===parseInt(e)?b:"number"==typeof a&&a===parseInt(d)?(delete b[e],b):"number"==typeof a&&a===parseInt(c)?(delete b[e],delete b[d],b):("object"==typeof a&&(a=h(a)),d in a&&"roundingPrecision"in a[d]&&(a[d].roundingPrecision=j(a[d].roundingPrecision)),(c in a||d in a||e in a)&&(b[c]=k(b[c],a[c])),d in a&&n in a[d]&&(b[d]=k(b[d],f(d,g(a[d][n]))),delete a[d][n]),d in a&&o in a[d]&&(b[d]=k(b[d],f(d,g(a[d][o]))),delete a[d][o]),d in a||e in a?b[d]=k(b[d],a[d]):delete b[d],e in a&&n in a[e]&&(b[e]=k(b[e],f(e,g(a[e][n]))),delete a[e][n]),e in a&&o in a[e]&&(b[e]=k(b[e],f(e,g(a[e][o]))),delete a[e][o]),e in a?b[e]=k(b[e],a[e]):delete b[e],b))}function f(a,b){var c,d=k(m[a],{});for(c in d)"boolean"==typeof d[c]&&(d[c]=b);return d}function g(a){switch(a){case p:case q:return!1;case r:case s:return!0;default:return a}}function h(a){var b,c,d=k(a,{});for(c=0;c<=2;c++)b=""+c,b in d&&(void 0===d[b]||d[b]===!1)&&delete d[b],b in d&&d[b]===!0&&(d[b]={}),b in d&&"string"==typeof d[b]&&(d[b]=i(d[b],b));return d}function i(a,b){return a.split(t).reduce(function(a,c){var d=c.split(u),e=d[0],h=d[1],i=g(h);return n==e||o==e?a=k(a,f(b,i)):a[e]=i,a},{})}var j=a("./rounding-precision").roundingPrecisionFrom,k=a("../utils/override"),l={Zero:"0",One:"1",Two:"2"},m={};m[l.Zero]={},m[l.One]={cleanupCharsets:!0,normalizeUrls:!0,optimizeBackground:!0,optimizeBorderRadius:!0,optimizeFilter:!0,optimizeFont:!0,optimizeFontWeight:!0,optimizeOutline:!0,removeNegativePaddings:!0,removeQuotes:!0,removeWhitespace:!0,replaceMultipleZeros:!0,replaceTimeUnits:!0,replaceZeroUnits:!0,roundingPrecision:j(void 0),selectorsSortingMethod:"standard",specialComments:"all",tidyAtRules:!0,tidyBlockScopes:!0,tidySelectors:!0,transform:d},m[l.Two]={mergeAdjacentRules:!0,mergeIntoShorthands:!0,mergeMedia:!0,mergeNonAdjacentRules:!0,mergeSemantically:!1,overrideProperties:!0,reduceNonAdjacentRules:!0,removeDuplicateFontRules:!0,removeDuplicateMediaBlocks:!0,removeDuplicateRules:!0,restructureRules:!1};var n="*",o="all",p="false",q="off",r="true",s="on",t=";",u=":";b.exports={OptimizationLevel:l,optimizationLevelFrom:e}},{"../utils/override":93,"./rounding-precision":66}],64:[function(a,b,c){(function(c){function d(a){return a?e.resolve(a):c.cwd()}var e=a("path");b.exports=d}).call(this,a("_process"))},{_process:111,path:109}],65:[function(a,b,c){function d(a){return void 0===a||!!a}b.exports=d},{}],66:[function(a,b,c){function d(a){return g(e(j),f(a))}function e(a){return{ch:a,cm:a,em:a,ex:a,in:a,mm:a,pc:a,pt:a,px:a,q:a,rem:a,vh:a,vmax:a,vmin:a,vw:a,"%":a}}function f(a){return null===a||void 0===a?{}:"boolean"==typeof a?{}:"number"==typeof a&&a==-1?e(j):"number"==typeof a?e(a):"string"==typeof a&&h.test(a)?e(parseInt(a)):"string"==typeof a&&a==j?e(j):"object"==typeof a?a:a.split(k).reduce(function(a,b){var c=b.split(l),d=c[0],f=parseInt(c[1]);return(isNaN(f)||f==-1)&&(f=j),i.indexOf(d)>-1?a=g(a,e(f)):a[d]=f,a},{})}var g=a("../utils/override"),h=/^\d+$/,i=["*","all"],j="off",k=",",l="=";b.exports={DEFAULT:j,roundingPrecisionFrom:d}},{"../utils/override":93}],67:[function(a,b,c){(function(c,d){function e(a,b,c){var d={callback:c,index:0,inline:b.options.inline,inlineRequest:b.options.inlineRequest,inlineTimeout:b.options.inlineTimeout,inputSourceMapTracker:b.inputSourceMapTracker,localOnly:b.localOnly,processedTokens:[],rebaseTo:b.options.rebaseTo,sourceTokens:a,warnings:b.warnings};return a.length>0?f(d):c(a)}function f(a){var b,c,d,e=[],f=g(a.sourceTokens[0]);for(d=a.sourceTokens.length;a.index<d;a.index++)if(c=a.sourceTokens[a.index],b=g(c),b!=f&&(e=[],f=b),e.push(c),a.processedTokens.push(c),c[0]==v.COMMENT&&z.test(c[1]))return h(c[1],b,e,a);return a.callback(a.processedTokens)}function g(a){var b,c;return a[0]==v.AT_RULE||a[0]==v.COMMENT?c=a[2][0]:(b=a[1][0],c=b[2][0]),c[2]}function h(a,b,c,d){return i(a,d,function(a){return a&&(d.inputSourceMapTracker.track(b,a),m(c,d.inputSourceMapTracker)),d.index++,f(d)})}function i(a,b,c){var d,e,f,g=z.exec(a)[1];return x(g)?(e=j(g),c(e)):y(g)?k(g,b,function(a){var b;a?(b=JSON.parse(a),f=u(b,g),c(f)):c(null)}):(d=p.resolve(b.rebaseTo,g),e=l(d,b),e?(f=t(e,d,b.rebaseTo),c(f)):c(null))}function j(a){var b=s(a),e=b[2]?b[2].split(/[=;]/)[2]:"us-ascii",f=b[3]?b[3].split(";")[1]:"utf8",g="utf8"==f?c.unescape(b[4]):b[4],h=new d(g,f);return h.charset=e,JSON.parse(h.toString())}function k(a,b,c){var d=q(a,!0,b.inline),e=!w(a);return b.localOnly?(b.warnings.push('Cannot fetch remote resource from "'+a+'" as no callback given.'),c(null)):e?(b.warnings.push('Cannot fetch "'+a+'" as no protocol given.'),c(null)):d?void r(a,b.inlineRequest,b.inlineTimeout,function(d,e){if(d)return b.warnings.push('Missing source map at "'+a+'" - '+d),c(null);c(e)}):(b.warnings.push('Cannot fetch "'+a+'" as resource is not allowed.'),c(null))}function l(a,b){var c,d=q(a,!1,b.inline);return o.existsSync(a)&&o.statSync(a).isFile()?d?(c=o.readFileSync(a,"utf-8"),JSON.parse(c)):(b.warnings.push('Cannot fetch "'+a+'" as resource is not allowed.'),null):(b.warnings.push('Ignoring local source map at "'+a+'" as resource is missing.'),null)}function m(a,b){var c,d,e;for(d=0,e=a.length;d<e;d++)switch(c=a[d],c[0]){case v.AT_RULE:n(c,b);break;case v.AT_RULE_BLOCK:m(c[1],b),m(c[2],b);break;case v.AT_RULE_BLOCK_SCOPE:n(c,b);break;case v.NESTED_BLOCK:m(c[1],b),m(c[2],b);break;case v.NESTED_BLOCK_SCOPE:n(c,b);break;case v.COMMENT:n(c,b);break;case v.PROPERTY:m(c,b);break;case v.PROPERTY_BLOCK:m(c[1],b);break;case v.PROPERTY_NAME:n(c,b);break;case v.PROPERTY_VALUE:n(c,b);break;case v.RULE:m(c[1],b),m(c[2],b);break;case v.RULE_SCOPE:n(c,b)}return a}function n(a,b){var c,d,e=a[1],f=a[2],g=[];for(c=0,d=f.length;c<d;c++)g.push(b.originalPositionFor(f[c],e.length));a[2]=g}var o=a("fs"),p=a("path"),q=a("./is-allowed-resource"),r=a("./load-remote-resource"),s=a("./match-data-uri"),t=a("./rebase-local-map"),u=a("./rebase-remote-map"),v=a("../tokenizer/token"),w=a("../utils/has-protocol"),x=a("../utils/is-data-uri-resource"),y=a("../utils/is-remote-resource"),z=/^\/\*# sourceMappingURL=(\S+) \*\/$/;b.exports=e}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},a("buffer").Buffer)},{"../tokenizer/token":82,"../utils/has-protocol":86,"../utils/is-data-uri-resource":87,"../utils/is-remote-resource":91,"./is-allowed-resource":70,"./load-remote-resource":72,"./match-data-uri":73,"./rebase-local-map":76,"./rebase-remote-map":77,buffer:5,fs:3,path:109}],68:[function(a,b,c){function d(a){var b,c,d,m;return d=a.replace(h,"").trim().replace(k,"(").replace(l,")").replace(i,"").replace(j,""),m=e(d," "),b=m[0].replace(f,"").replace(g,""),c=m.slice(1).join(" "),[b,c]}var e=a("../utils/split"),f=/^\(/,g=/\)$/,h=/^@import/i,i=/['"]\s*/,j=/\s*['"]/,k=/^url\(\s*/i,l=/\s*\)/i;b.exports=d},{"../utils/split":94}],69:[function(a,b,c){function d(){var a={};return{all:e.bind(null,a),isTracking:f.bind(null,a),originalPositionFor:g.bind(null,a),track:i.bind(null,a)}}function e(a){return a}function f(a,b){return b in a}function g(a,b,c,d){for(var e,f=b[0],i=b[1],j=b[2],k={line:f,column:i+c};!e&&k.column>i;)k.column--,e=a[j].originalPositionFor(k);return null===e.line&&f>1&&d>0?g(a,[f-1,i,j],c,d-1):null!==e.line?h(e):b}function h(a){return[a.line,a.column,a.source]}function i(a,b,c){a[b]=new j(c)}var j=a("source-map").SourceMapConsumer;b.exports=d},{"source-map":150}],70:[function(a,b,c){function d(a,b,c){var h,k,l,m,n,o,p=!b;if(0===c.length)return!1;for(b&&!i(a)&&(a=j+a),h=b?g.parse(a).host:a,k=b?a:f.resolve(a),o=0;o<c.length;o++)l=c[o],m="!"==l[0],n=l.substring(1),p=m&&b&&e(n)?p&&!d(a,!0,[n]):!m||b||e(n)?m?p&&!0:"all"==l||(b&&"local"==l?p||!1:!(!b||"remote"!=l)||!(!b&&"remote"==l)&&(!b&&"local"==l||(l===h||(l===a||(!(!b||0!==k.indexOf(l))||(!b&&0===k.indexOf(f.resolve(l))||b!=e(n)&&(p&&!0))))))):p&&!d(a,!1,[n]);return p}function e(a){return h(a)||g.parse(j+"//"+a).host==a}var f=a("path"),g=a("url"),h=a("../utils/is-remote-resource"),i=a("../utils/has-protocol"),j="http:";b.exports=d},{"../utils/has-protocol":86,"../utils/is-remote-resource":91,path:109,url:158}],71:[function(a,b,c){function d(a,b){return f({callback:b,index:0,inline:a.options.inline,inlineRequest:a.options.inlineRequest,inlineTimeout:a.options.inlineTimeout,localOnly:a.localOnly,rebaseTo:a.options.rebaseTo,sourcesContent:a.sourcesContent,uriToSource:e(a.inputSourceMapTracker.all()),warnings:a.warnings})}function e(a){var b,c,d,e,f,g={};for(d in a)for(b=a[d],e=0,f=b.sources.length;e<f;e++)c=b.sources[e],d=b.sourceContentFor(c,!0),g[c]=d;return g}function f(a){var b,c,d,e=Object.keys(a.uriToSource);for(d=e.length;a.index<d;a.index++){if(b=e[a.index],!(c=a.uriToSource[b]))return g(b,a);a.sourcesContent[b]=c}return a.callback()}function g(a,b){var c;return o(a)?h(a,b,function(c){return b.index++,b.sourcesContent[a]=c,f(b)}):(c=i(a,b),b.index++,b.sourcesContent[a]=c,f(b))}function h(a,b,c){var d=l(a,!0,b.inline),e=!n(a);return b.localOnly?(b.warnings.push('Cannot fetch remote resource from "'+a+'" as no callback given.'),c(null)):e?(b.warnings.push('Cannot fetch "'+a+'" as no protocol given.'),c(null)):d?void m(a,b.inlineRequest,b.inlineTimeout,function(d,e){d&&b.warnings.push('Missing original source at "'+a+'" - '+d),c(e)}):(b.warnings.push('Cannot fetch "'+a+'" as resource is not allowed.'),c(null))}function i(a,b){var c=l(a,!1,b.inline),d=k.resolve(b.rebaseTo,a);return j.existsSync(d)&&j.statSync(d).isFile()?c?j.readFileSync(d,"utf8"):(b.warnings.push('Cannot fetch "'+d+'" as resource is not allowed.'),null):(b.warnings.push('Ignoring local source map at "'+d+'" as resource is missing.'),null)}var j=a("fs"),k=a("path"),l=a("./is-allowed-resource"),m=a("./load-remote-resource"),n=a("../utils/has-protocol"),o=a("../utils/is-remote-resource");b.exports=d},{"../utils/has-protocol":86,"../utils/is-remote-resource":91,"./is-allowed-resource":70,"./load-remote-resource":72,fs:3,path:109}],72:[function(a,b,c){function d(a,b,c,l){var m,n,o=b.protocol||b.hostname,p=!1;m=j(g.parse(a),b||{}),void 0!==b.hostname&&(m.protocol=b.protocol||k,m.path=m.href),n=o&&!i(o)||h(a)?e.get:f.get,n(m,function(e){var f,h=[];if(!p){if(e.statusCode<200||e.statusCode>399)return l(e.statusCode,null);if(e.statusCode>299)return f=g.resolve(a,e.headers.location),d(f,b,c,l);e.on("data",function(a){h.push(a.toString())}),e.on("end",function(){l(null,h.join(""))})}}).on("error",function(a){p||(p=!0,l(a.message,null))}).on("timeout",function(){p||(p=!0,l("timeout",null))}).setTimeout(c)}var e=a("http"),f=a("https"),g=a("url"),h=a("../utils/is-http-resource"),i=a("../utils/is-https-resource"),j=a("../utils/override"),k="http:";b.exports=d},{"../utils/is-http-resource":88,"../utils/is-https-resource":89,"../utils/override":93,http:151,https:102,url:158}],73:[function(a,b,c){function d(a){return e.exec(a)}var e=/^data:(\S*?)?(;charset=[^;]+)?(;[^,]+?)?,(.+)/;b.exports=d},{}],74:[function(a,b,c){function d(a){return a.replace(f,e)}var e="/",f=/\\/g;b.exports=d},{}],75:[function(a,b,c){(function(c,d){function e(a,b,c){return f(a,b,function(a){return w(a,b,function(){return b.options.sourceMapInlineSources?z(b,function(){return c(a)}):c(a)})})}function f(a,b,d){return"string"==typeof a?g(a,b,d):c.isBuffer(a)?g(a.toString(),b,d):Array.isArray(a)?h(a,b,d):"object"==typeof a?i(a,b,d):void 0}function g(a,b,c){return b.source=void 0,b.sourcesContent[void 0]=a,b.stats.originalSize+=a.length,m(a,b,{inline:b.options.inline},c)}function h(a,b,c){return m(a.reduce(function(a,b){var c=j(b);return a.push(l(c)),a},[]).join(""),b,{inline:["all"]},c)}function i(a,b,c){var d,e,f,g=[];for(d in a)f=a[d],e=j(d),g.push(l(e)),b.sourcesContent[e]=f.styles,f.sourceMap&&k(f.sourceMap,e,b);return m(g.join(""),b,{inline:["all"]},c)}function j(a){var b,c,d=v.resolve("");return L(a)?a:(b=v.isAbsolute(a)?a:v.resolve(a),c=v.relative(d,b),B(c))}function k(a,b,c){var d="string"==typeof a?JSON.parse(a):a,e=L(b)?E(d,b):D(d,b||M,c.options.rebaseTo);c.inputSourceMapTracker.track(b,e)}function l(a){return F("url("+a+")","")+I.SEMICOLON}function m(a,b,c,d){var e,f={};return b.source?L(b.source)?(f.fromBase=b.source,f.toBase=b.source):v.isAbsolute(b.source)?(f.fromBase=v.dirname(b.source),f.toBase=b.options.rebaseTo):(f.fromBase=v.dirname(v.resolve(b.source)),f.toBase=b.options.rebaseTo):(f.fromBase=v.resolve(""),f.toBase=b.options.rebaseTo),e=G(a,b),e=C(e,b.options.rebase,b.validator,f),n(c.inline)?o(e,b,c,d):d(e)}function n(a){return!(1==a.length&&"none"==a[0])}function o(a,b,c,d){return p({afterContent:!1,callback:d,errors:b.errors,externalContext:b,inlinedStylesheets:c.inlinedStylesheets||b.inlinedStylesheets,inline:c.inline,inlineRequest:b.options.inlineRequest,inlineTimeout:b.options.inlineTimeout,isRemote:c.isRemote||!1,localOnly:b.localOnly,outputTokens:[],rebaseTo:b.options.rebaseTo,sourceTokens:a,warnings:b.warnings})}function p(a){var b,c,d;for(c=0,d=a.sourceTokens.length;c<d;c++){if(b=a.sourceTokens[c],b[0]==H.AT_RULE&&K(b[1]))return a.sourceTokens.splice(0,c),q(b,a);b[0]==H.AT_RULE||b[0]==H.COMMENT?a.outputTokens.push(b):(a.outputTokens.push(b),a.afterContent=!0)}return a.sourceTokens=[],a.callback(a.outputTokens)}function q(a,b){var c=x(a[1]),d=c[0],e=c[1],f=a[2];return L(d)?r(d,e,f,b):s(d,e,f,b)}function r(a,b,c,e){function f(f,g){return f?(e.errors.push('Broken @import declaration of "'+a+'" - '+f),d.nextTick(function(){e.outputTokens=e.outputTokens.concat(e.sourceTokens.slice(0,1)),e.sourceTokens=e.sourceTokens.slice(1),p(e)})):(e.inline=e.externalContext.options.inline,e.isRemote=!0,e.externalContext.source=h,e.externalContext.sourcesContent[a]=g,e.externalContext.stats.originalSize+=g.length,m(g,e.externalContext,e,function(a){return a=t(a,b,c),e.outputTokens=e.outputTokens.concat(a),e.sourceTokens=e.sourceTokens.slice(1),p(e)}))}var g=y(a,!0,e.inline),h=a,i=a in e.externalContext.sourcesContent,j=!J(a);return e.inlinedStylesheets.indexOf(a)>-1?(e.warnings.push('Ignoring remote @import of "'+a+'" as it has already been imported.'),e.sourceTokens=e.sourceTokens.slice(1),p(e)):e.localOnly&&e.afterContent?(e.warnings.push('Ignoring remote @import of "'+a+'" as no callback given and after other content.'),e.sourceTokens=e.sourceTokens.slice(1),p(e)):j?(e.warnings.push('Skipping remote @import of "'+a+'" as no protocol given.'),e.outputTokens=e.outputTokens.concat(e.sourceTokens.slice(0,1)),e.sourceTokens=e.sourceTokens.slice(1),p(e)):e.localOnly&&!i?(e.warnings.push('Skipping remote @import of "'+a+'" as no callback given.'),e.outputTokens=e.outputTokens.concat(e.sourceTokens.slice(0,1)),e.sourceTokens=e.sourceTokens.slice(1),p(e)):!g&&e.afterContent?(e.warnings.push('Ignoring remote @import of "'+a+'" as resource is not allowed and after other content.'),e.sourceTokens=e.sourceTokens.slice(1),p(e)):g?(e.inlinedStylesheets.push(a),i?f(null,e.externalContext.sourcesContent[a]):A(a,e.inlineRequest,e.inlineTimeout,f)):(e.warnings.push('Skipping remote @import of "'+a+'" as resource is not allowed.'),e.outputTokens=e.outputTokens.concat(e.sourceTokens.slice(0,1)),e.sourceTokens=e.sourceTokens.slice(1),p(e))}function s(a,b,c,d){var e,f,g=v.resolve(""),h=v.isAbsolute(a)?v.resolve(g,"/"==a[0]?a.substring(1):a):v.resolve(d.rebaseTo,a),i=v.relative(g,h),j=y(a,!1,d.inline),k=B(i),l=k in d.externalContext.sourcesContent;return d.inlinedStylesheets.indexOf(h)>-1?d.warnings.push('Ignoring local @import of "'+a+'" as it has already been imported.'):l||u.existsSync(h)&&u.statSync(h).isFile()?!j&&d.afterContent?d.warnings.push('Ignoring local @import of "'+a+'" as resource is not allowed and after other content.'):d.afterContent?d.warnings.push('Ignoring local @import of "'+a+'" as after other content.'):j?(e=l?d.externalContext.sourcesContent[k]:u.readFileSync(h,"utf-8"),d.inlinedStylesheets.push(h),d.inline=d.externalContext.options.inline,d.externalContext.source=k,d.externalContext.sourcesContent[k]=e,d.externalContext.stats.originalSize+=e.length,f=m(e,d.externalContext,d,function(a){return a}),f=t(f,b,c),d.outputTokens=d.outputTokens.concat(f)):(d.warnings.push('Skipping local @import of "'+a+'" as resource is not allowed.'),d.outputTokens=d.outputTokens.concat(d.sourceTokens.slice(0,1))):d.errors.push('Ignoring local @import of "'+a+'" as resource is missing.'),
+d.sourceTokens=d.sourceTokens.slice(1),p(d)}function t(a,b,c){return b?[[H.NESTED_BLOCK,[[H.NESTED_BLOCK_SCOPE,"@media "+b,c]],a]]:a}var u=a("fs"),v=a("path"),w=a("./apply-source-maps"),x=a("./extract-import-url-and-media"),y=a("./is-allowed-resource"),z=a("./load-original-sources"),A=a("./load-remote-resource"),B=a("./normalize-path"),C=a("./rebase"),D=a("./rebase-local-map"),E=a("./rebase-remote-map"),F=a("./restore-import"),G=a("../tokenizer/tokenize"),H=a("../tokenizer/token"),I=a("../tokenizer/marker"),J=a("../utils/has-protocol"),K=a("../utils/is-import"),L=a("../utils/is-remote-resource"),M="uri:unknown";b.exports=e}).call(this,{isBuffer:a("../../../is-buffer/index.js")},a("_process"))},{"../../../is-buffer/index.js":105,"../tokenizer/marker":81,"../tokenizer/token":82,"../tokenizer/tokenize":83,"../utils/has-protocol":86,"../utils/is-import":90,"../utils/is-remote-resource":91,"./apply-source-maps":67,"./extract-import-url-and-media":68,"./is-allowed-resource":70,"./load-original-sources":71,"./load-remote-resource":72,"./normalize-path":74,"./rebase":78,"./rebase-local-map":76,"./rebase-remote-map":77,"./restore-import":79,_process:111,fs:3,path:109}],76:[function(a,b,c){function d(a,b,c){var d=e.resolve(""),f=e.resolve(d,b),g=e.dirname(f);return a.sources=a.sources.map(function(a){return e.relative(c,e.resolve(g,a))}),a}var e=a("path");b.exports=d},{path:109}],77:[function(a,b,c){function d(a,b){var c=e.dirname(b);return a.sources=a.sources.map(function(a){return f.resolve(c,a)}),a}var e=a("path"),f=a("url");b.exports=d},{path:109,url:158}],78:[function(a,b,c){function d(a,b,c,d){return b?e(a,c,d):f(a,c,d)}function e(a,b,c){var d,f,j;for(f=0,j=a.length;f<j;f++)switch(d=a[f],d[0]){case m.AT_RULE:g(d,b,c);break;case m.AT_RULE_BLOCK:i(d[2],b,c);break;case m.COMMENT:h(d,c);break;case m.NESTED_BLOCK:e(d[2],b,c);break;case m.RULE:i(d[2],b,c)}return a}function f(a,b,c){var d,e,f;for(e=0,f=a.length;e<f;e++)switch(d=a[e],d[0]){case m.AT_RULE:g(d,b,c)}return a}function g(a,b,c){if(n(a[1])){var d=j(a[1]),e=l(d[0],c),f=d[1];a[1]=k(e,f)}}function h(a,b){var c=o.exec(a[1]);c&&c[1].indexOf("data:")===-1&&(a[1]=a[1].replace(c[1],l(c[1],b,!0)))}function i(a,b,c){var d,e,f,g,h,i;for(f=0,g=a.length;f<g;f++)for(d=a[f],h=2,i=d.length;h<i;h++)e=d[h][1],b.isValidUrl(e)&&(d[h][1]=l(e,c))}var j=a("./extract-import-url-and-media"),k=a("./restore-import"),l=a("./rewrite-url"),m=a("../tokenizer/token"),n=a("../utils/is-import"),o=/^\/\*# sourceMappingURL=(\S+) \*\/$/;b.exports=d},{"../tokenizer/token":82,"../utils/is-import":90,"./extract-import-url-and-media":68,"./restore-import":79,"./rewrite-url":80}],79:[function(a,b,c){function d(a,b){return("@import "+a+" "+b).trim()}b.exports=d},{}],80:[function(a,b,c){(function(c){function d(a,b){return b?e(a)&&!h(b.toBase)?a:h(a)||f(a)||g(a)?a:i(a)?"'"+a+"'":h(b.toBase)?r.resolve(b.toBase,a):l(b.absolute?j(a,b):k(a,b)):a}function e(a){return q.isAbsolute(a)}function f(a){return"#"==a[0]}function g(a){return/^\w+:\w+/.test(a)}function h(a){return/^[^:]+?:\/\//.test(a)||0===a.indexOf("//")}function i(a){return 0===a.indexOf("data:")}function j(a,b){return q.resolve(q.join(b.fromBase||"",a)).replace(b.toBase,"")}function k(a,b){return q.relative(b.toBase,q.join(b.fromBase||"",a))}function l(a){return C?a.replace(/\\/g,"/"):a}function m(a){return a.indexOf(t)>-1?s:a.indexOf(s)>-1?t:n(a)||o(a)?t:""}function n(a){return B.test(a)}function o(a){return y.test(a)}function p(a,b,c){var e=a.replace(z,"").replace(A,"").trim(),f=e.replace(w,"").replace(x,"").trim(),g=e[0]==t||e[0]==s?e[0]:m(f);return c?d(f,b):u+g+d(f,b)+g+v}var q=a("path"),r=a("url"),s='"',t="'",u="url(",v=")",w=/^["']/,x=/["']$/,y=/[\(\)]/,z=/^url\(/i,A=/\)$/,B=/\s/,C="win32"==c.platform;b.exports=p}).call(this,a("_process"))},{_process:111,path:109,url:158}],81:[function(a,b,c){var d={ASTERISK:"*",AT:"@",BACK_SLASH:"\\",CLOSE_CURLY_BRACKET:"}",CLOSE_ROUND_BRACKET:")",CLOSE_SQUARE_BRACKET:"]",COLON:":",COMMA:",",DOUBLE_QUOTE:'"',EXCLAMATION:"!",FORWARD_SLASH:"/",NEW_LINE_NIX:"\n",NEW_LINE_WIN:"\r",OPEN_CURLY_BRACKET:"{",OPEN_ROUND_BRACKET:"(",OPEN_SQUARE_BRACKET:"[",SEMICOLON:";",SINGLE_QUOTE:"'",SPACE:" ",TAB:"\t",UNDERSCORE:"_"};b.exports=d},{}],82:[function(a,b,c){var d={AT_RULE:"at-rule",AT_RULE_BLOCK:"at-rule-block",AT_RULE_BLOCK_SCOPE:"at-rule-block-scope",COMMENT:"comment",NESTED_BLOCK:"nested-block",NESTED_BLOCK_SCOPE:"nested-block-scope",PROPERTY:"property",PROPERTY_BLOCK:"property-block",PROPERTY_NAME:"property-name",PROPERTY_VALUE:"property-value",RULE:"rule",RULE_SCOPE:"rule-scope"};b.exports=d},{}],83:[function(a,b,c){function d(a,b){return e(a,b,{level:l.BLOCK,position:{source:b.source||void 0,line:1,column:0,index:0}},!1)}function e(a,b,c,d){for(var m,n,o,q,r,s,t,u,v,w,x,y,z=[],A=z,B=[],C=[],D=c.level,E=[],F=[],G=[],H=0,I=!1,J=!1,K=!1,L=!1,M=!1,N=c.position;N.index<a.length;N.index++){var O=a[N.index];if(s=D==l.SINGLE_QUOTE||D==l.DOUBLE_QUOTE,t=O==i.SPACE||O==i.TAB,u=O==i.NEW_LINE_NIX,v=O==i.NEW_LINE_NIX&&a[N.index-1]==i.NEW_LINE_WIN,w=!J&&D!=l.COMMENT&&!s&&O==i.ASTERISK&&a[N.index-1]==i.FORWARD_SLASH,x=!I&&D==l.COMMENT&&O==i.FORWARD_SLASH&&a[N.index-1]==i.ASTERISK,q=0===F.length?[N.line,N.column,N.source]:q,y)F.push(O);else if(x||D!=l.COMMENT)if(w&&(D==l.BLOCK||D==l.RULE)&&F.length>1)C.push(q),F.push(O),G.push(F.slice(0,F.length-2)),F=F.slice(F.length-2),q=[N.line,N.column-1,N.source],E.push(D),D=l.COMMENT;else if(w)E.push(D),D=l.COMMENT,F.push(O);else if(x)r=F.join("").trim()+O,m=[j.COMMENT,r,[f(q,r,b)]],A.push(m),D=E.pop(),q=C.pop()||null,F=G.pop()||[];else if(O!=i.SINGLE_QUOTE||s)if(O==i.SINGLE_QUOTE&&D==l.SINGLE_QUOTE)D=E.pop(),F.push(O);else if(O!=i.DOUBLE_QUOTE||s)if(O==i.DOUBLE_QUOTE&&D==l.DOUBLE_QUOTE)D=E.pop(),F.push(O);else if(!w&&!x&&O!=i.CLOSE_ROUND_BRACKET&&O!=i.OPEN_ROUND_BRACKET&&D!=l.COMMENT&&!s&&H>0)F.push(O);else if(O!=i.OPEN_ROUND_BRACKET||s||D==l.COMMENT||L)if(O!=i.CLOSE_ROUND_BRACKET||s||D==l.COMMENT||L)if(O==i.SEMICOLON&&D==l.BLOCK&&F[0]==i.AT)r=F.join("").trim(),z.push([j.AT_RULE,r,[f(q,r,b)]]),F=[];else if(O==i.COMMA&&D==l.BLOCK&&n)r=F.join("").trim(),n[1].push([h(n[0]),r,[f(q,r,b,n[1].length)]]),F=[];else if(O==i.COMMA&&D==l.BLOCK&&g(F)==j.AT_RULE)F.push(O);else if(O==i.COMMA&&D==l.BLOCK)n=[g(F),[],[]],r=F.join("").trim(),n[1].push([h(n[0]),r,[f(q,r,b,0)]]),F=[];else if(O==i.OPEN_CURLY_BRACKET&&D==l.BLOCK&&n&&n[0]==j.NESTED_BLOCK)r=F.join("").trim(),n[1].push([j.NESTED_BLOCK_SCOPE,r,[f(q,r,b)]]),z.push(n),E.push(D),N.column++,N.index++,F=[],n[2]=e(a,b,c,!0),n=null;else if(O==i.OPEN_CURLY_BRACKET&&D==l.BLOCK&&g(F)==j.NESTED_BLOCK)r=F.join("").trim(),n=n||[j.NESTED_BLOCK,[],[]],n[1].push([j.NESTED_BLOCK_SCOPE,r,[f(q,r,b)]]),z.push(n),E.push(D),N.column++,N.index++,F=[],n[2]=e(a,b,c,!0),n=null;else if(O==i.OPEN_CURLY_BRACKET&&D==l.BLOCK)r=F.join("").trim(),n=n||[g(F),[],[]],n[1].push([h(n[0]),r,[f(q,r,b,n[1].length)]]),A=n[2],z.push(n),E.push(D),D=l.RULE,F=[];else if(O==i.OPEN_CURLY_BRACKET&&D==l.RULE&&L)B.push(n),n=[j.PROPERTY_BLOCK,[]],o.push(n),A=n[1],E.push(D),D=l.RULE,L=!1;else if(O!=i.COLON||D!=l.RULE||L)if(O==i.SEMICOLON&&D==l.RULE&&o&&B.length>0&&F.length>0&&F[0]==i.AT)r=F.join("").trim(),n[1].push([j.AT_RULE,r,[f(q,r,b)]]),F=[];else if(O==i.SEMICOLON&&D==l.RULE&&o&&F.length>0)r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),o=null,L=!1,F=[];else if(O==i.SEMICOLON&&D==l.RULE&&o&&0===F.length)o=null,L=!1;else if(O==i.SEMICOLON&&D==l.RULE&&F.length>0&&F[0]==i.AT)r=F.join(""),A.push([j.AT_RULE,r,[f(q,r,b)]]),L=!1,F=[];else if(O==i.SEMICOLON&&D==l.RULE&&M)M=!1,F=[];else if(O==i.SEMICOLON&&D==l.RULE&&0===F.length);else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&o&&L&&F.length>0&&B.length>0)r=F.join(""),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),o=null,n=B.pop(),A=n[2],D=E.pop(),L=!1,F=[];else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&o&&F.length>0&&F[0]==i.AT&&B.length>0)r=F.join(""),n[1].push([j.AT_RULE,r,[f(q,r,b)]]),o=null,n=B.pop(),A=n[2],D=E.pop(),L=!1,F=[];else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&o&&B.length>0)o=null,n=B.pop(),A=n[2],D=E.pop(),L=!1;else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&o&&F.length>0)r=F.join(""),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),o=null,n=B.pop(),A=z,D=E.pop(),L=!1,F=[];else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&F.length>0&&F[0]==i.AT)o=null,n=null,r=F.join("").trim(),A.push([j.AT_RULE,r,[f(q,r,b)]]),A=z,D=E.pop(),L=!1,F=[];else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE&&E[E.length-1]==l.RULE)o=null,n=B.pop(),A=n[2],D=E.pop(),L=!1,M=!0,F=[];else if(O==i.CLOSE_CURLY_BRACKET&&D==l.RULE)o=null,n=null,A=z,D=E.pop(),L=!1;else if(O==i.CLOSE_CURLY_BRACKET&&D==l.BLOCK&&!d&&N.index<=a.length-1)b.warnings.push("Unexpected '}' at "+k([N.line,N.column,N.source])+"."),F.push(O);else{if(O==i.CLOSE_CURLY_BRACKET&&D==l.BLOCK)break;O==i.OPEN_ROUND_BRACKET&&D==l.RULE&&L?(F.push(O),H++):O==i.CLOSE_ROUND_BRACKET&&D==l.RULE&&L&&1==H?(F.push(O),r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),H--,F=[]):O==i.CLOSE_ROUND_BRACKET&&D==l.RULE&&L?(F.push(O),H--):O==i.FORWARD_SLASH&&a[N.index+1]!=i.ASTERISK&&D==l.RULE&&L&&F.length>0?(r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),o.push([j.PROPERTY_VALUE,O,[[N.line,N.column,N.source]]]),F=[]):O==i.FORWARD_SLASH&&a[N.index+1]!=i.ASTERISK&&D==l.RULE&&L?(o.push([j.PROPERTY_VALUE,O,[[N.line,N.column,N.source]]]),F=[]):O==i.COMMA&&D==l.RULE&&L&&F.length>0?(r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),o.push([j.PROPERTY_VALUE,O,[[N.line,N.column,N.source]]]),F=[]):O==i.COMMA&&D==l.RULE&&L?(o.push([j.PROPERTY_VALUE,O,[[N.line,N.column,N.source]]]),F=[]):(t||u&&!v)&&D==l.RULE&&L&&o&&F.length>0?(r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),F=[]):v&&D==l.RULE&&L&&o&&F.length>1?(r=F.join("").trim(),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),F=[]):v&&D==l.RULE&&L?F=[]:1==F.length&&v?F.pop():(F.length>0||!t&&!u&&!v)&&F.push(O)}else r=F.join("").trim(),o=[j.PROPERTY,[j.PROPERTY_NAME,r,[f(q,r,b)]]],A.push(o),L=!0,F=[];else F.push(O),H--;else F.push(O),H++;else E.push(D),D=l.DOUBLE_QUOTE,F.push(O);else E.push(D),D=l.SINGLE_QUOTE,F.push(O);else F.push(O);K=y,y=!K&&O==i.BACK_SLASH,I=w,J=x,N.line=v||u?N.line+1:N.line,N.column=v||u?0:N.column+1}return L&&b.warnings.push("Missing '}' at "+k([N.line,N.column,N.source])+"."),L&&F.length>0&&(r=F.join("").replace(p,""),o.push([j.PROPERTY_VALUE,r,[f(q,r,b)]]),F=[]),F.length>0&&b.warnings.push("Invalid character(s) '"+F.join("")+"' at "+k(q)+". Ignoring."),z}function f(a,b,c,d){var e=a[2];return c.inputSourceMapTracker.isTracking(e)?c.inputSourceMapTracker.originalPositionFor(a,b.length,d):a}function g(a){var b=a[0]==i.AT||a[0]==i.UNDERSCORE,c=a.join("").split(o)[0];return b&&n.indexOf(c)>-1?j.NESTED_BLOCK:b&&m.indexOf(c)>-1?j.AT_RULE:b?j.AT_RULE_BLOCK:j.RULE}function h(a){return a==j.RULE?j.RULE_SCOPE:a==j.NESTED_BLOCK?j.NESTED_BLOCK_SCOPE:a==j.AT_RULE_BLOCK?j.AT_RULE_BLOCK_SCOPE:void 0}var i=a("./marker"),j=a("./token"),k=a("../utils/format-position"),l={BLOCK:"block",COMMENT:"comment",DOUBLE_QUOTE:"double-quote",RULE:"rule",SINGLE_QUOTE:"single-quote"},m=["@charset","@import"],n=["@-moz-document","@document","@-moz-keyframes","@-ms-keyframes","@-o-keyframes","@-webkit-keyframes","@keyframes","@media","@supports"],o=/[\s\(]/,p=/[\s|\}]*$/;b.exports=d},{"../utils/format-position":85,"./marker":81,"./token":82}],84:[function(a,b,c){function d(a){for(var b=a.slice(0),c=0,e=b.length;c<e;c++)Array.isArray(b[c])&&(b[c]=d(b[c]));return b}b.exports=d},{}],85:[function(a,b,c){function d(a){var b=a[0],c=a[1],d=a[2];return d?d+":"+b+":"+c:b+":"+c}b.exports=d},{}],86:[function(a,b,c){function d(a){return!e.test(a)}var e=/^\/\//;b.exports=d},{}],87:[function(a,b,c){function d(a){return e.test(a)}var e=/^data:(\S*?)?(;charset=[^;]+)?(;[^,]+?)?,(.+)/;b.exports=d},{}],88:[function(a,b,c){function d(a){return e.test(a)}var e=/^http:\/\//;b.exports=d},{}],89:[function(a,b,c){function d(a){return e.test(a)}var e=/^https:\/\//;b.exports=d},{}],90:[function(a,b,c){function d(a){return e.test(a)}var e=/^@import/i;b.exports=d},{}],91:[function(a,b,c){function d(a){return e.test(a)}var e=/^(\w+:\/\/|\/\/)/;b.exports=d},{}],92:[function(a,b,c){function d(a,b){var c,d,g,h,i=(""+a).split(f).map(e),j=(""+b).split(f).map(e),k=Math.min(i.length,j.length);for(g=0,h=k;g<h;g++)if(c=i[g],d=j[g],c!=d)return c>d?1:-1;return i.length>j.length?1:i.length==j.length?0:-1}function e(a){return""+parseInt(a)==a?parseInt(a):a}var f=/([0-9]+)/;b.exports=d},{}],93:[function(a,b,c){function d(a,b){var c,e,f,g={};for(c in a)f=a[c],Array.isArray(f)?g[c]=f.slice(0):g[c]="object"==typeof f&&null!==f?d(f,{}):f;for(e in b)f=b[e],e in g&&Array.isArray(f)?g[e]=f.slice(0):g[e]=e in g&&"object"==typeof f&&null!==f?d(g[e],f):f;return g}b.exports=d},{}],94:[function(a,b,c){function d(a,b){var c,d,f=e.OPEN_ROUND_BRACKET,g=e.CLOSE_ROUND_BRACKET,h=0,i=0,j=0,k=a.length,l=[];if(a.indexOf(b)==-1)return[a];if(a.indexOf(f)==-1)return a.split(b);for(;i<k;)a[i]==f?h++:a[i]==g&&h--,0===h&&i>0&&i+1<k&&a[i]==b&&(l.push(a.substring(j,i)),j=i+1),i++;return j<i+1&&(c=a.substring(j),d=c[c.length-1],d==b&&(c=c.substring(0,c.length-1)),l.push(c)),l}var e=a("../tokenizer/marker");b.exports=d},{"../tokenizer/marker":81}],95:[function(a,b,c){function d(a){return"background"==a[1][1]||"transform"==a[1][1]||"src"==a[1][1]}function e(a,b){return a[b][1][a[b][1].length-1]==C.CLOSE_ROUND_BRACKET}function f(a,b){return a[b][1]==C.COMMA}function g(a,b){return a[b][1]==C.FORWARD_SLASH}function h(a,b){return a[b+1]&&a[b+1][1]==C.COMMA}function i(a,b){return a[b+1]&&a[b+1][1]==C.FORWARD_SLASH}function j(a){return"filter"==a[1][1]||"-ms-filter"==a[1][1]}function k(a,b,c){return!a.spaceAfterClosingBrace&&d(b)&&e(b,c)||i(b,c)||g(b,c)||h(b,c)||f(b,c)}function l(a,b){for(var c=a.store,d=0,e=b.length;d<e;d++)c(a,b[d]),d<e-1&&c(a,w(a))}function m(a,b){for(var c=n(b),d=0,e=b.length;d<e;d++)o(a,b,d,c)}function n(a){for(var b=a.length-1;b>=0&&a[b][0]==D.COMMENT;b--);return b}function o(a,b,c,d){var e=a.store,f=b[c],g=f[2][0]==D.PROPERTY_BLOCK,h=c<d||g,i=c===d;switch(f[0]){case D.AT_RULE:e(a,f),e(a,c<d?v(a,A.AfterProperty,!1):z);break;case D.COMMENT:e(a,f);break;case D.PROPERTY:e(a,f[1]),e(a,u(a)),p(a,f),e(a,h?v(a,A.AfterProperty,i):z)}}function p(a,b){var c,d,e=a.store;if(b[2][0]==D.PROPERTY_BLOCK)e(a,s(a,A.AfterBlockBegins,!1)),m(a,b[2][1]),e(a,t(a,A.AfterBlockEnds,!1,!0));else for(c=2,d=b.length;c<d;c++)e(a,b[c]),c<d-1&&(j(b)||!k(a,b,c))&&e(a,C.SPACE)}function q(a,b){return a.format&&a.format.breaks[b]}function r(a,b){return a.format&&a.format.spaces[b]}function s(a,b,c){return a.format?(a.indentBy+=a.format.indentBy,a.indentWith=a.format.indentWith.repeat(a.indentBy),(c&&r(a,B.BeforeBlockBegins)?C.SPACE:z)+C.OPEN_CURLY_BRACKET+(q(a,b)?y:z)+a.indentWith):C.OPEN_CURLY_BRACKET}function t(a,b,c,d){return a.format?(a.indentBy-=a.format.indentBy,a.indentWith=a.format.indentWith.repeat(a.indentBy),(q(a,A.AfterProperty)||c&&q(a,A.BeforeBlockEnds)?y:z)+a.indentWith+C.CLOSE_CURLY_BRACKET+(d?z:(q(a,b)?y:z)+a.indentWith)):C.CLOSE_CURLY_BRACKET}function u(a){return a.format?C.COLON+(r(a,B.BeforeValue)?C.SPACE:z):C.COLON}function v(a,b,c){return a.format?C.SEMICOLON+(c||!q(a,b)?z:y+a.indentWith):C.SEMICOLON}function w(a){return a.format?C.COMMA+(q(a,A.BetweenSelectors)?y:z)+a.indentWith:C.COMMA}function x(a,b){var c,d,e,f,g=a.store;for(e=0,f=b.length;e<f;e++)switch(c=b[e],d=e==f-1,c[0]){case D.AT_RULE:g(a,c),g(a,v(a,A.AfterAtRule,d));break;case D.AT_RULE_BLOCK:l(a,c[1]),g(a,s(a,A.AfterRuleBegins,!0)),m(a,c[2]),g(a,t(a,A.AfterRuleEnds,!1,d));break;case D.NESTED_BLOCK:l(a,c[1]),g(a,s(a,A.AfterBlockBegins,!0)),x(a,c[2]),g(a,t(a,A.AfterBlockEnds,!0,d));break;case D.COMMENT:g(a,c),g(a,q(a,A.AfterComment)?y:z);break;case D.RULE:l(a,c[1]),g(a,s(a,A.AfterRuleBegins,!0)),m(a,c[2]),g(a,t(a,A.AfterRuleEnds,!1,d))}}var y=a("os").EOL,z="",A=a("../options/format").Breaks,B=a("../options/format").Spaces,C=a("../tokenizer/marker"),D=a("../tokenizer/token");b.exports={all:x,body:m,property:o,rules:l,value:p}},{"../options/format":59,"../tokenizer/marker":81,"../tokenizer/token":82,os:108}],96:[function(a,b,c){function d(a,b){a.output.push("string"==typeof b?b:b[1])}function e(){return{output:[],store:d}}function f(a){var b=e();return k.all(b,a),b.output.join("")}function g(a){var b=e();return k.body(b,a),b.output.join("")}function h(a,b){var c=e();return k.property(c,a,b,!0),c.output.join("")}function i(a){var b=e();return k.rules(b,a),b.output.join("")}function j(a){var b=e();return k.value(b,a),b.output.join("")}var k=a("./helpers");b.exports={all:f,body:g,property:h,rules:i,value:j}},{"./helpers":95}],97:[function(a,b,c){function d(a,b){var c="string"==typeof b?b:b[1];(0,a.wrap)(a,c),f(a,c),a.output.push(c)}function e(a,b){a.column+b.length>a.format.wrapAt&&(f(a,i),a.output.push(i))}function f(a,b){var c=b.split("\n");a.line+=c.length-1,a.column=c.length>1?0:a.column+c.pop().length}function g(a,b){var c={column:0,format:b.options.format,indentBy:0,indentWith:"",line:1,output:[],spaceAfterClosingBrace:b.options.compatibility.properties.spaceAfterClosingBrace,store:d,wrap:b.options.format.wrapAt?e:function(){}};return h(c,a),{styles:c.output.join("")}}var h=a("./helpers").all,i=a("os").EOL;b.exports=g},{"./helpers":95,os:108}],98:[function(a,b,c){(function(c){function d(a,b){var c="string"==typeof b,d=c?b:b[1],e=c?null:b[2];(0,a.wrap)(a,d),f(a,d,e),a.output.push(d)}function e(a,b){a.column+b.length>a.format.wrapAt&&(f(a,l,!1),a.output.push(l))}function f(a,b,c){var d=b.split("\n");c&&g(a,c),a.line+=d.length-1,a.column=d.length>1?0:a.column+d.pop().length}function g(a,b){for(var c=0,d=b.length;c<d;c++)h(a,b[c])}function h(a,b){var c=b[0],d=b[1],e=b[2],f=e,g=f||p;n&&f&&!m(f)&&(g=f.replace(o,q)),a.outputMap.addMapping({generated:{line:a.line,column:a.column},source:g,original:{line:c,column:d}}),a.inlineSources&&e in a.sourcesContent&&a.outputMap.setSourceContent(g,a.sourcesContent[e])}function i(a,b){var c={column:0,format:b.options.format,indentBy:0,indentWith:"",inlineSources:b.options.sourceMapInlineSources,line:1,output:[],outputMap:new j,sourcesContent:b.sourcesContent,spaceAfterClosingBrace:b.options.compatibility.properties.spaceAfterClosingBrace,store:d,wrap:b.options.format.wrapAt?e:function(){}};return k(c,a),{sourceMap:c.outputMap,styles:c.output.join("")}}var j=a("source-map").SourceMapGenerator,k=a("./helpers").all,l=a("os").EOL,m=a("../utils/is-remote-resource"),n="win32"==c.platform,o=/\//g,p="$stdin",q="\\";b.exports=i}).call(this,a("_process"))},{"../utils/is-remote-resource":91,"./helpers":95,_process:111,os:108,"source-map":150}],99:[function(a,b,c){(function(a){function b(a){return Array.isArray?Array.isArray(a):"[object Array]"===q(a)}function d(a){return"boolean"==typeof a}function e(a){return null===a}function f(a){return null==a}function g(a){return"number"==typeof a}function h(a){return"string"==typeof a}function i(a){return"symbol"==typeof a}function j(a){return void 0===a}function k(a){return"[object RegExp]"===q(a)}function l(a){return"object"==typeof a&&null!==a}function m(a){return"[object Date]"===q(a)}function n(a){return"[object Error]"===q(a)||a instanceof Error}function o(a){return"function"==typeof a}function p(a){return null===a||"boolean"==typeof a||"number"==typeof a||"string"==typeof a||"symbol"==typeof a||void 0===a}function q(a){return Object.prototype.toString.call(a)}c.isArray=b,c.isBoolean=d,c.isNull=e,c.isNullOrUndefined=f,c.isNumber=g,c.isString=h,c.isSymbol=i,c.isUndefined=j,c.isRegExp=k,c.isObject=l,c.isDate=m,c.isError=n,c.isFunction=o,c.isPrimitive=p,c.isBuffer=a.isBuffer}).call(this,{isBuffer:a("../../is-buffer/index.js")})},{"../../is-buffer/index.js":105}],100:[function(a,b,c){function d(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function e(a){return"function"==typeof a}function f(a){return"number"==typeof a}function g(a){return"object"==typeof a&&null!==a}function h(a){return void 0===a}b.exports=d,d.EventEmitter=d,d.prototype._events=void 0,d.prototype._maxListeners=void 0,d.defaultMaxListeners=10,d.prototype.setMaxListeners=function(a){if(!f(a)||a<0||isNaN(a))throw TypeError("n must be a positive number");return this._maxListeners=a,this},d.prototype.emit=function(a){var b,c,d,f,i,j;if(this._events||(this._events={}),"error"===a&&(!this._events.error||g(this._events.error)&&!this._events.error.length)){if((b=arguments[1])instanceof Error)throw b;var k=new Error('Uncaught, unspecified "error" event. ('+b+")");throw k.context=b,k}if(c=this._events[a],h(c))return!1;if(e(c))switch(arguments.length){case 1:c.call(this);break;case 2:c.call(this,arguments[1]);break;case 3:c.call(this,arguments[1],arguments[2]);break;default:f=Array.prototype.slice.call(arguments,1),c.apply(this,f)}else if(g(c))for(f=Array.prototype.slice.call(arguments,1),j=c.slice(),d=j.length,i=0;i<d;i++)j[i].apply(this,f);return!0},d.prototype.addListener=function(a,b){var c;if(!e(b))throw TypeError("listener must be a function");return this._events||(this._events={}),this._events.newListener&&this.emit("newListener",a,e(b.listener)?b.listener:b),this._events[a]?g(this._events[a])?this._events[a].push(b):this._events[a]=[this._events[a],b]:this._events[a]=b,g(this._events[a])&&!this._events[a].warned&&(c=h(this._maxListeners)?d.defaultMaxListeners:this._maxListeners)&&c>0&&this._events[a].length>c&&(this._events[a].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[a].length),"function"==typeof console.trace&&console.trace()),this},d.prototype.on=d.prototype.addListener,d.prototype.once=function(a,b){function c(){this.removeListener(a,c),d||(d=!0,b.apply(this,arguments))}if(!e(b))throw TypeError("listener must be a function");var d=!1;return c.listener=b,this.on(a,c),this},d.prototype.removeListener=function(a,b){var c,d,f,h;if(!e(b))throw TypeError("listener must be a function");if(!this._events||!this._events[a])return this;if(c=this._events[a],f=c.length,d=-1,c===b||e(c.listener)&&c.listener===b)delete this._events[a],this._events.removeListener&&this.emit("removeListener",a,b);else if(g(c)){for(h=f;h-- >0;)if(c[h]===b||c[h].listener&&c[h].listener===b){d=h;break}if(d<0)return this;1===c.length?(c.length=0,delete this._events[a]):c.splice(d,1),this._events.removeListener&&this.emit("removeListener",a,b)}return this},d.prototype.removeAllListeners=function(a){var b,c;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[a]&&delete this._events[a],this;if(0===arguments.length){for(b in this._events)"removeListener"!==b&&this.removeAllListeners(b);return this.removeAllListeners("removeListener"),this._events={},this}if(c=this._events[a],e(c))this.removeListener(a,c);else if(c)for(;c.length;)this.removeListener(a,c[c.length-1]);return delete this._events[a],this},d.prototype.listeners=function(a){return this._events&&this._events[a]?e(this._events[a])?[this._events[a]]:this._events[a].slice():[]},d.prototype.listenerCount=function(a){if(this._events){var b=this._events[a];if(e(b))return 1;if(b)return b.length}return 0},d.listenerCount=function(a,b){return a.listenerCount(b)}},{}],101:[function(a,b,c){(function(a){!function(d){var e="object"==typeof c&&c,f="object"==typeof b&&b&&b.exports==e&&b,g="object"==typeof a&&a;g.global!==g&&g.window!==g||(d=g);var h=/<\u20D2|=\u20E5|>\u20D2|\u205F\u200A|\u219D\u0338|\u2202\u0338|\u2220\u20D2|\u2229\uFE00|\u222A\uFE00|\u223C\u20D2|\u223D\u0331|\u223E\u0333|\u2242\u0338|\u224B\u0338|\u224D\u20D2|\u224E\u0338|\u224F\u0338|\u2250\u0338|\u2261\u20E5|\u2264\u20D2|\u2265\u20D2|\u2266\u0338|\u2267\u0338|\u2268\uFE00|\u2269\uFE00|\u226A\u0338|\u226A\u20D2|\u226B\u0338|\u226B\u20D2|\u227F\u0338|\u2282\u20D2|\u2283\u20D2|\u228A\uFE00|\u228B\uFE00|\u228F\u0338|\u2290\u0338|\u2293\uFE00|\u2294\uFE00|\u22B4\u20D2|\u22B5\u20D2|\u22D8\u0338|\u22D9\u0338|\u22DA\uFE00|\u22DB\uFE00|\u22F5\u0338|\u22F9\u0338|\u2933\u0338|\u29CF\u0338|\u29D0\u0338|\u2A6D\u0338|\u2A70\u0338|\u2A7D\u0338|\u2A7E\u0338|\u2AA1\u0338|\u2AA2\u0338|\u2AAC\uFE00|\u2AAD\uFE00|\u2AAF\u0338|\u2AB0\u0338|\u2AC5\u0338|\u2AC6\u0338|\u2ACB\uFE00|\u2ACC\uFE00|\u2AFD\u20E5|[\xA0-\u0113\u0116-\u0122\u0124-\u012B\u012E-\u014D\u0150-\u017E\u0192\u01B5\u01F5\u0237\u02C6\u02C7\u02D8-\u02DD\u0311\u0391-\u03A1\u03A3-\u03A9\u03B1-\u03C9\u03D1\u03D2\u03D5\u03D6\u03DC\u03DD\u03F0\u03F1\u03F5\u03F6\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E\u045F\u2002-\u2005\u2007-\u2010\u2013-\u2016\u2018-\u201A\u201C-\u201E\u2020-\u2022\u2025\u2026\u2030-\u2035\u2039\u203A\u203E\u2041\u2043\u2044\u204F\u2057\u205F-\u2063\u20AC\u20DB\u20DC\u2102\u2105\u210A-\u2113\u2115-\u211E\u2122\u2124\u2127-\u2129\u212C\u212D\u212F-\u2131\u2133-\u2138\u2145-\u2148\u2153-\u215E\u2190-\u219B\u219D-\u21A7\u21A9-\u21AE\u21B0-\u21B3\u21B5-\u21B7\u21BA-\u21DB\u21DD\u21E4\u21E5\u21F5\u21FD-\u2205\u2207-\u2209\u220B\u220C\u220F-\u2214\u2216-\u2218\u221A\u221D-\u2238\u223A-\u2257\u2259\u225A\u225C\u225F-\u2262\u2264-\u228B\u228D-\u229B\u229D-\u22A5\u22A7-\u22B0\u22B2-\u22BB\u22BD-\u22DB\u22DE-\u22E3\u22E6-\u22F7\u22F9-\u22FE\u2305\u2306\u2308-\u2310\u2312\u2313\u2315\u2316\u231C-\u231F\u2322\u2323\u232D\u232E\u2336\u233D\u233F\u237C\u23B0\u23B1\u23B4-\u23B6\u23DC-\u23DF\u23E2\u23E7\u2423\u24C8\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2550-\u256C\u2580\u2584\u2588\u2591-\u2593\u25A1\u25AA\u25AB\u25AD\u25AE\u25B1\u25B3-\u25B5\u25B8\u25B9\u25BD-\u25BF\u25C2\u25C3\u25CA\u25CB\u25EC\u25EF\u25F8-\u25FC\u2605\u2606\u260E\u2640\u2642\u2660\u2663\u2665\u2666\u266A\u266D-\u266F\u2713\u2717\u2720\u2736\u2758\u2772\u2773\u27C8\u27C9\u27E6-\u27ED\u27F5-\u27FA\u27FC\u27FF\u2902-\u2905\u290C-\u2913\u2916\u2919-\u2920\u2923-\u292A\u2933\u2935-\u2939\u293C\u293D\u2945\u2948-\u294B\u294E-\u2976\u2978\u2979\u297B-\u297F\u2985\u2986\u298B-\u2996\u299A\u299C\u299D\u29A4-\u29B7\u29B9\u29BB\u29BC\u29BE-\u29C5\u29C9\u29CD-\u29D0\u29DC-\u29DE\u29E3-\u29E5\u29EB\u29F4\u29F6\u2A00-\u2A02\u2A04\u2A06\u2A0C\u2A0D\u2A10-\u2A17\u2A22-\u2A27\u2A29\u2A2A\u2A2D-\u2A31\u2A33-\u2A3C\u2A3F\u2A40\u2A42-\u2A4D\u2A50\u2A53-\u2A58\u2A5A-\u2A5D\u2A5F\u2A66\u2A6A\u2A6D-\u2A75\u2A77-\u2A9A\u2A9D-\u2AA2\u2AA4-\u2AB0\u2AB3-\u2AC8\u2ACB\u2ACC\u2ACF-\u2ADB\u2AE4\u2AE6-\u2AE9\u2AEB-\u2AF3\u2AFD\uFB00-\uFB04]|\uD835[\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDD6B]/g,i={"­":"shy","‌":"zwnj","‍":"zwj","‎":"lrm","⁣":"ic","⁢":"it","⁡":"af","‏":"rlm","​":"ZeroWidthSpace","⁠":"NoBreak","̑":"DownBreve","⃛":"tdot","⃜":"DotDot","\t":"Tab","\n":"NewLine"," ":"puncsp"," ":"MediumSpace"," ":"thinsp"," ":"hairsp"," ":"emsp13"," ":"ensp"," ":"emsp14"," ":"emsp"," ":"numsp"," ":"nbsp","  ":"ThickSpace","‾":"oline",_:"lowbar","‐":"dash","–":"ndash","—":"mdash","―":"horbar",",":"comma",";":"semi","⁏":"bsemi",":":"colon","⩴":"Colone","!":"excl","¡":"iexcl","?":"quest","¿":"iquest",".":"period","‥":"nldr","…":"mldr","·":"middot","'":"apos","‘":"lsquo","’":"rsquo","‚":"sbquo","‹":"lsaquo","›":"rsaquo",'"':"quot","“":"ldquo","”":"rdquo","„":"bdquo","«":"laquo","»":"raquo","(":"lpar",")":"rpar","[":"lsqb","]":"rsqb","{":"lcub","}":"rcub","⌈":"lceil","⌉":"rceil","⌊":"lfloor","⌋":"rfloor","⦅":"lopar","⦆":"ropar","⦋":"lbrke","⦌":"rbrke","⦍":"lbrkslu","⦎":"rbrksld","⦏":"lbrksld","⦐":"rbrkslu","⦑":"langd","⦒":"rangd","⦓":"lparlt","⦔":"rpargt","⦕":"gtlPar","⦖":"ltrPar","⟦":"lobrk","⟧":"robrk","⟨":"lang","⟩":"rang","⟪":"Lang","⟫":"Rang","⟬":"loang","⟭":"roang","❲":"lbbrk","❳":"rbbrk","‖":"Vert","§":"sect","¶":"para","@":"commat","*":"ast","/":"sol",undefined:null,"&":"amp","#":"num","%":"percnt","‰":"permil","‱":"pertenk","†":"dagger","‡":"Dagger","•":"bull","⁃":"hybull","′":"prime","″":"Prime","‴":"tprime","⁗":"qprime","‵":"bprime","⁁":"caret","`":"grave","´":"acute","˜":"tilde","^":"Hat","¯":"macr","˘":"breve","˙":"dot","¨":"die","˚":"ring","˝":"dblac","¸":"cedil","˛":"ogon","ˆ":"circ","ˇ":"caron","°":"deg","©":"copy","®":"reg","℗":"copysr","℘":"wp","℞":"rx","℧":"mho","℩":"iiota","←":"larr","↚":"nlarr","→":"rarr","↛":"nrarr","↑":"uarr","↓":"darr","↔":"harr","↮":"nharr","↕":"varr","↖":"nwarr","↗":"nearr","↘":"searr","↙":"swarr","↝":"rarrw","↝̸":"nrarrw","↞":"Larr","↟":"Uarr","↠":"Rarr","↡":"Darr","↢":"larrtl","↣":"rarrtl","↤":"mapstoleft","↥":"mapstoup","↦":"map","↧":"mapstodown","↩":"larrhk","↪":"rarrhk","↫":"larrlp","↬":"rarrlp","↭":"harrw","↰":"lsh","↱":"rsh","↲":"ldsh","↳":"rdsh","↵":"crarr","↶":"cularr","↷":"curarr","↺":"olarr","↻":"orarr","↼":"lharu","↽":"lhard","↾":"uharr","↿":"uharl","⇀":"rharu","⇁":"rhard","⇂":"dharr","⇃":"dharl","⇄":"rlarr","⇅":"udarr","⇆":"lrarr","⇇":"llarr","⇈":"uuarr","⇉":"rrarr","⇊":"ddarr","⇋":"lrhar","⇌":"rlhar","⇐":"lArr","⇍":"nlArr","⇑":"uArr","⇒":"rArr","⇏":"nrArr","⇓":"dArr","⇔":"iff","⇎":"nhArr","⇕":"vArr","⇖":"nwArr","⇗":"neArr","⇘":"seArr","⇙":"swArr","⇚":"lAarr","⇛":"rAarr","⇝":"zigrarr","⇤":"larrb","⇥":"rarrb","⇵":"duarr","⇽":"loarr","⇾":"roarr","⇿":"hoarr","∀":"forall","∁":"comp","∂":"part","∂̸":"npart","∃":"exist","∄":"nexist","∅":"empty","∇":"Del","∈":"in","∉":"notin","∋":"ni","∌":"notni","϶":"bepsi","∏":"prod","∐":"coprod","∑":"sum","+":"plus","±":"pm","÷":"div","×":"times","<":"lt","≮":"nlt","<⃒":"nvlt","=":"equals","≠":"ne","=⃥":"bne","⩵":"Equal",">":"gt","≯":"ngt",">⃒":"nvgt","¬":"not","|":"vert","¦":"brvbar","−":"minus","∓":"mp","∔":"plusdo","⁄":"frasl","∖":"setmn","∗":"lowast","∘":"compfn","√":"Sqrt","∝":"prop","∞":"infin","∟":"angrt","∠":"ang","∠⃒":"nang","∡":"angmsd","∢":"angsph","∣":"mid","∤":"nmid","∥":"par","∦":"npar","∧":"and","∨":"or","∩":"cap","∩︀":"caps","∪":"cup","∪︀":"cups","∫":"int","∬":"Int","∭":"tint","⨌":"qint","∮":"oint","∯":"Conint","∰":"Cconint","∱":"cwint","∲":"cwconint","∳":"awconint","∴":"there4","∵":"becaus","∶":"ratio","∷":"Colon","∸":"minusd","∺":"mDDot","∻":"homtht","∼":"sim","≁":"nsim","∼⃒":"nvsim","∽":"bsim","∽̱":"race","∾":"ac","∾̳":"acE","∿":"acd","≀":"wr","≂":"esim","≂̸":"nesim","≃":"sime","≄":"nsime","≅":"cong","≇":"ncong","≆":"simne","≈":"ap","≉":"nap","≊":"ape","≋":"apid","≋̸":"napid","≌":"bcong","≍":"CupCap","≭":"NotCupCap","≍⃒":"nvap","≎":"bump","≎̸":"nbump","≏":"bumpe","≏̸":"nbumpe","≐":"doteq","≐̸":"nedot","≑":"eDot","≒":"efDot","≓":"erDot","≔":"colone","≕":"ecolon","≖":"ecir","≗":"cire","≙":"wedgeq","≚":"veeeq","≜":"trie","≟":"equest","≡":"equiv","≢":"nequiv","≡⃥":"bnequiv","≤":"le","≰":"nle","≤⃒":"nvle","≥":"ge","≱":"nge","≥⃒":"nvge","≦":"lE","≦̸":"nlE","≧":"gE","≧̸":"ngE","≨︀":"lvnE","≨":"lnE","≩":"gnE","≩︀":"gvnE","≪":"ll","≪̸":"nLtv","≪⃒":"nLt","≫":"gg","≫̸":"nGtv","≫⃒":"nGt","≬":"twixt","≲":"lsim","≴":"nlsim","≳":"gsim","≵":"ngsim","≶":"lg","≸":"ntlg","≷":"gl","≹":"ntgl","≺":"pr","⊀":"npr","≻":"sc","⊁":"nsc","≼":"prcue","⋠":"nprcue","≽":"sccue","⋡":"nsccue","≾":"prsim","≿":"scsim","≿̸":"NotSucceedsTilde","⊂":"sub","⊄":"nsub","⊂⃒":"vnsub","⊃":"sup","⊅":"nsup","⊃⃒":"vnsup","⊆":"sube","⊈":"nsube","⊇":"supe","⊉":"nsupe","⊊︀":"vsubne","⊊":"subne","⊋︀":"vsupne","⊋":"supne","⊍":"cupdot","⊎":"uplus","⊏":"sqsub","⊏̸":"NotSquareSubset","⊐":"sqsup","⊐̸":"NotSquareSuperset","⊑":"sqsube","⋢":"nsqsube","⊒":"sqsupe","⋣":"nsqsupe","⊓":"sqcap","⊓︀":"sqcaps","⊔":"sqcup","⊔︀":"sqcups","⊕":"oplus","⊖":"ominus","⊗":"otimes","⊘":"osol","⊙":"odot","⊚":"ocir","⊛":"oast","⊝":"odash","⊞":"plusb","⊟":"minusb","⊠":"timesb","⊡":"sdotb","⊢":"vdash","⊬":"nvdash","⊣":"dashv","⊤":"top","⊥":"bot","⊧":"models","⊨":"vDash","⊭":"nvDash","⊩":"Vdash","⊮":"nVdash","⊪":"Vvdash","⊫":"VDash","⊯":"nVDash","⊰":"prurel","⊲":"vltri","⋪":"nltri","⊳":"vrtri","⋫":"nrtri","⊴":"ltrie","⋬":"nltrie","⊴⃒":"nvltrie","⊵":"rtrie","⋭":"nrtrie","⊵⃒":"nvrtrie","⊶":"origof","⊷":"imof","⊸":"mumap","⊹":"hercon","⊺":"intcal","⊻":"veebar","⊽":"barvee","⊾":"angrtvb","⊿":"lrtri","⋀":"Wedge","⋁":"Vee","⋂":"xcap","⋃":"xcup","⋄":"diam","⋅":"sdot","⋆":"Star","⋇":"divonx","⋈":"bowtie","⋉":"ltimes","⋊":"rtimes","⋋":"lthree","⋌":"rthree",
+"⋍":"bsime","⋎":"cuvee","⋏":"cuwed","⋐":"Sub","⋑":"Sup","⋒":"Cap","⋓":"Cup","⋔":"fork","⋕":"epar","⋖":"ltdot","⋗":"gtdot","⋘":"Ll","⋘̸":"nLl","⋙":"Gg","⋙̸":"nGg","⋚︀":"lesg","⋚":"leg","⋛":"gel","⋛︀":"gesl","⋞":"cuepr","⋟":"cuesc","⋦":"lnsim","⋧":"gnsim","⋨":"prnsim","⋩":"scnsim","⋮":"vellip","⋯":"ctdot","⋰":"utdot","⋱":"dtdot","⋲":"disin","⋳":"isinsv","⋴":"isins","⋵":"isindot","⋵̸":"notindot","⋶":"notinvc","⋷":"notinvb","⋹":"isinE","⋹̸":"notinE","⋺":"nisd","⋻":"xnis","⋼":"nis","⋽":"notnivc","⋾":"notnivb","⌅":"barwed","⌆":"Barwed","⌌":"drcrop","⌍":"dlcrop","⌎":"urcrop","⌏":"ulcrop","⌐":"bnot","⌒":"profline","⌓":"profsurf","⌕":"telrec","⌖":"target","⌜":"ulcorn","⌝":"urcorn","⌞":"dlcorn","⌟":"drcorn","⌢":"frown","⌣":"smile","⌭":"cylcty","⌮":"profalar","⌶":"topbot","⌽":"ovbar","⌿":"solbar","⍼":"angzarr","⎰":"lmoust","⎱":"rmoust","⎴":"tbrk","⎵":"bbrk","⎶":"bbrktbrk","⏜":"OverParenthesis","⏝":"UnderParenthesis","⏞":"OverBrace","⏟":"UnderBrace","⏢":"trpezium","⏧":"elinters","␣":"blank","─":"boxh","│":"boxv","┌":"boxdr","┐":"boxdl","└":"boxur","┘":"boxul","├":"boxvr","┤":"boxvl","┬":"boxhd","┴":"boxhu","┼":"boxvh","═":"boxH","║":"boxV","╒":"boxdR","╓":"boxDr","╔":"boxDR","╕":"boxdL","╖":"boxDl","╗":"boxDL","╘":"boxuR","╙":"boxUr","╚":"boxUR","╛":"boxuL","╜":"boxUl","╝":"boxUL","╞":"boxvR","╟":"boxVr","╠":"boxVR","╡":"boxvL","╢":"boxVl","╣":"boxVL","╤":"boxHd","╥":"boxhD","╦":"boxHD","╧":"boxHu","╨":"boxhU","╩":"boxHU","╪":"boxvH","╫":"boxVh","╬":"boxVH","▀":"uhblk","▄":"lhblk","█":"block","░":"blk14","▒":"blk12","▓":"blk34","□":"squ","▪":"squf","▫":"EmptyVerySmallSquare","▭":"rect","▮":"marker","▱":"fltns","△":"xutri","▴":"utrif","▵":"utri","▸":"rtrif","▹":"rtri","▽":"xdtri","▾":"dtrif","▿":"dtri","◂":"ltrif","◃":"ltri","◊":"loz","○":"cir","◬":"tridot","◯":"xcirc","◸":"ultri","◹":"urtri","◺":"lltri","◻":"EmptySmallSquare","◼":"FilledSmallSquare","★":"starf","☆":"star","☎":"phone","♀":"female","♂":"male","♠":"spades","♣":"clubs","♥":"hearts","♦":"diams","♪":"sung","✓":"check","✗":"cross","✠":"malt","✶":"sext","❘":"VerticalSeparator","⟈":"bsolhsub","⟉":"suphsol","⟵":"xlarr","⟶":"xrarr","⟷":"xharr","⟸":"xlArr","⟹":"xrArr","⟺":"xhArr","⟼":"xmap","⟿":"dzigrarr","⤂":"nvlArr","⤃":"nvrArr","⤄":"nvHarr","⤅":"Map","⤌":"lbarr","⤍":"rbarr","⤎":"lBarr","⤏":"rBarr","⤐":"RBarr","⤑":"DDotrahd","⤒":"UpArrowBar","⤓":"DownArrowBar","⤖":"Rarrtl","⤙":"latail","⤚":"ratail","⤛":"lAtail","⤜":"rAtail","⤝":"larrfs","⤞":"rarrfs","⤟":"larrbfs","⤠":"rarrbfs","⤣":"nwarhk","⤤":"nearhk","⤥":"searhk","⤦":"swarhk","⤧":"nwnear","⤨":"toea","⤩":"tosa","⤪":"swnwar","⤳":"rarrc","⤳̸":"nrarrc","⤵":"cudarrr","⤶":"ldca","⤷":"rdca","⤸":"cudarrl","⤹":"larrpl","⤼":"curarrm","⤽":"cularrp","⥅":"rarrpl","⥈":"harrcir","⥉":"Uarrocir","⥊":"lurdshar","⥋":"ldrushar","⥎":"LeftRightVector","⥏":"RightUpDownVector","⥐":"DownLeftRightVector","⥑":"LeftUpDownVector","⥒":"LeftVectorBar","⥓":"RightVectorBar","⥔":"RightUpVectorBar","⥕":"RightDownVectorBar","⥖":"DownLeftVectorBar","⥗":"DownRightVectorBar","⥘":"LeftUpVectorBar","⥙":"LeftDownVectorBar","⥚":"LeftTeeVector","⥛":"RightTeeVector","⥜":"RightUpTeeVector","⥝":"RightDownTeeVector","⥞":"DownLeftTeeVector","⥟":"DownRightTeeVector","⥠":"LeftUpTeeVector","⥡":"LeftDownTeeVector","⥢":"lHar","⥣":"uHar","⥤":"rHar","⥥":"dHar","⥦":"luruhar","⥧":"ldrdhar","⥨":"ruluhar","⥩":"rdldhar","⥪":"lharul","⥫":"llhard","⥬":"rharul","⥭":"lrhard","⥮":"udhar","⥯":"duhar","⥰":"RoundImplies","⥱":"erarr","⥲":"simrarr","⥳":"larrsim","⥴":"rarrsim","⥵":"rarrap","⥶":"ltlarr","⥸":"gtrarr","⥹":"subrarr","⥻":"suplarr","⥼":"lfisht","⥽":"rfisht","⥾":"ufisht","⥿":"dfisht","⦚":"vzigzag","⦜":"vangrt","⦝":"angrtvbd","⦤":"ange","⦥":"range","⦦":"dwangle","⦧":"uwangle","⦨":"angmsdaa","⦩":"angmsdab","⦪":"angmsdac","⦫":"angmsdad","⦬":"angmsdae","⦭":"angmsdaf","⦮":"angmsdag","⦯":"angmsdah","⦰":"bemptyv","⦱":"demptyv","⦲":"cemptyv","⦳":"raemptyv","⦴":"laemptyv","⦵":"ohbar","⦶":"omid","⦷":"opar","⦹":"operp","⦻":"olcross","⦼":"odsold","⦾":"olcir","⦿":"ofcir","⧀":"olt","⧁":"ogt","⧂":"cirscir","⧃":"cirE","⧄":"solb","⧅":"bsolb","⧉":"boxbox","⧍":"trisb","⧎":"rtriltri","⧏":"LeftTriangleBar","⧏̸":"NotLeftTriangleBar","⧐":"RightTriangleBar","⧐̸":"NotRightTriangleBar","⧜":"iinfin","⧝":"infintie","⧞":"nvinfin","⧣":"eparsl","⧤":"smeparsl","⧥":"eqvparsl","⧫":"lozf","⧴":"RuleDelayed","⧶":"dsol","⨀":"xodot","⨁":"xoplus","⨂":"xotime","⨄":"xuplus","⨆":"xsqcup","⨍":"fpartint","⨐":"cirfnint","⨑":"awint","⨒":"rppolint","⨓":"scpolint","⨔":"npolint","⨕":"pointint","⨖":"quatint","⨗":"intlarhk","⨢":"pluscir","⨣":"plusacir","⨤":"simplus","⨥":"plusdu","⨦":"plussim","⨧":"plustwo","⨩":"mcomma","⨪":"minusdu","⨭":"loplus","⨮":"roplus","⨯":"Cross","⨰":"timesd","⨱":"timesbar","⨳":"smashp","⨴":"lotimes","⨵":"rotimes","⨶":"otimesas","⨷":"Otimes","⨸":"odiv","⨹":"triplus","⨺":"triminus","⨻":"tritime","⨼":"iprod","⨿":"amalg","⩀":"capdot","⩂":"ncup","⩃":"ncap","⩄":"capand","⩅":"cupor","⩆":"cupcap","⩇":"capcup","⩈":"cupbrcap","⩉":"capbrcup","⩊":"cupcup","⩋":"capcap","⩌":"ccups","⩍":"ccaps","⩐":"ccupssm","⩓":"And","⩔":"Or","⩕":"andand","⩖":"oror","⩗":"orslope","⩘":"andslope","⩚":"andv","⩛":"orv","⩜":"andd","⩝":"ord","⩟":"wedbar","⩦":"sdote","⩪":"simdot","⩭":"congdot","⩭̸":"ncongdot","⩮":"easter","⩯":"apacir","⩰":"apE","⩰̸":"napE","⩱":"eplus","⩲":"pluse","⩳":"Esim","⩷":"eDDot","⩸":"equivDD","⩹":"ltcir","⩺":"gtcir","⩻":"ltquest","⩼":"gtquest","⩽":"les","⩽̸":"nles","⩾":"ges","⩾̸":"nges","⩿":"lesdot","⪀":"gesdot","⪁":"lesdoto","⪂":"gesdoto","⪃":"lesdotor","⪄":"gesdotol","⪅":"lap","⪆":"gap","⪇":"lne","⪈":"gne","⪉":"lnap","⪊":"gnap","⪋":"lEg","⪌":"gEl","⪍":"lsime","⪎":"gsime","⪏":"lsimg","⪐":"gsiml","⪑":"lgE","⪒":"glE","⪓":"lesges","⪔":"gesles","⪕":"els","⪖":"egs","⪗":"elsdot","⪘":"egsdot","⪙":"el","⪚":"eg","⪝":"siml","⪞":"simg","⪟":"simlE","⪠":"simgE","⪡":"LessLess","⪡̸":"NotNestedLessLess","⪢":"GreaterGreater","⪢̸":"NotNestedGreaterGreater","⪤":"glj","⪥":"gla","⪦":"ltcc","⪧":"gtcc","⪨":"lescc","⪩":"gescc","⪪":"smt","⪫":"lat","⪬":"smte","⪬︀":"smtes","⪭":"late","⪭︀":"lates","⪮":"bumpE","⪯":"pre","⪯̸":"npre","⪰":"sce","⪰̸":"nsce","⪳":"prE","⪴":"scE","⪵":"prnE","⪶":"scnE","⪷":"prap","⪸":"scap","⪹":"prnap","⪺":"scnap","⪻":"Pr","⪼":"Sc","⪽":"subdot","⪾":"supdot","⪿":"subplus","⫀":"supplus","⫁":"submult","⫂":"supmult","⫃":"subedot","⫄":"supedot","⫅":"subE","⫅̸":"nsubE","⫆":"supE","⫆̸":"nsupE","⫇":"subsim","⫈":"supsim","⫋︀":"vsubnE","⫋":"subnE","⫌︀":"vsupnE","⫌":"supnE","⫏":"csub","⫐":"csup","⫑":"csube","⫒":"csupe","⫓":"subsup","⫔":"supsub","⫕":"subsub","⫖":"supsup","⫗":"suphsub","⫘":"supdsub","⫙":"forkv","⫚":"topfork","⫛":"mlcp","⫤":"Dashv","⫦":"Vdashl","⫧":"Barv","⫨":"vBar","⫩":"vBarv","⫫":"Vbar","⫬":"Not","⫭":"bNot","⫮":"rnmid","⫯":"cirmid","⫰":"midcir","⫱":"topcir","⫲":"nhpar","⫳":"parsim","⫽":"parsl","⫽⃥":"nparsl","♭":"flat","♮":"natur","♯":"sharp","¤":"curren","¢":"cent",$:"dollar","£":"pound","¥":"yen","€":"euro","¹":"sup1","½":"half","⅓":"frac13","¼":"frac14","⅕":"frac15","⅙":"frac16","⅛":"frac18","²":"sup2","⅔":"frac23","⅖":"frac25","³":"sup3","¾":"frac34","⅗":"frac35","⅜":"frac38","⅘":"frac45","⅚":"frac56","⅝":"frac58","⅞":"frac78","𝒶":"ascr","𝕒":"aopf","𝔞":"afr","𝔸":"Aopf","𝔄":"Afr","𝒜":"Ascr","ª":"ordf","á":"aacute","Á":"Aacute","à":"agrave","À":"Agrave","ă":"abreve","Ă":"Abreve","â":"acirc","Â":"Acirc","å":"aring","Å":"angst","ä":"auml","Ä":"Auml","ã":"atilde","Ã":"Atilde","ą":"aogon","Ą":"Aogon","ā":"amacr","Ā":"Amacr","æ":"aelig","Æ":"AElig","𝒷":"bscr","𝕓":"bopf","𝔟":"bfr","𝔹":"Bopf","ℬ":"Bscr","𝔅":"Bfr","𝔠":"cfr","𝒸":"cscr","𝕔":"copf","ℭ":"Cfr","𝒞":"Cscr","ℂ":"Copf","ć":"cacute","Ć":"Cacute","ĉ":"ccirc","Ĉ":"Ccirc","č":"ccaron","Č":"Ccaron","ċ":"cdot","Ċ":"Cdot","ç":"ccedil","Ç":"Ccedil","℅":"incare","𝔡":"dfr","ⅆ":"dd","𝕕":"dopf","𝒹":"dscr","𝒟":"Dscr","𝔇":"Dfr","ⅅ":"DD","𝔻":"Dopf","ď":"dcaron","Ď":"Dcaron","đ":"dstrok","Đ":"Dstrok","ð":"eth","Ð":"ETH","ⅇ":"ee","ℯ":"escr","𝔢":"efr","𝕖":"eopf","ℰ":"Escr","𝔈":"Efr","𝔼":"Eopf","é":"eacute","É":"Eacute","è":"egrave","È":"Egrave","ê":"ecirc","Ê":"Ecirc","ě":"ecaron","Ě":"Ecaron","ë":"euml","Ë":"Euml","ė":"edot","Ė":"Edot","ę":"eogon","Ę":"Eogon","ē":"emacr","Ē":"Emacr","𝔣":"ffr","𝕗":"fopf","𝒻":"fscr","𝔉":"Ffr","𝔽":"Fopf","ℱ":"Fscr","ff":"fflig","ffi":"ffilig","ffl":"ffllig","fi":"filig",fj:"fjlig","fl":"fllig","ƒ":"fnof","ℊ":"gscr","𝕘":"gopf","𝔤":"gfr","𝒢":"Gscr","𝔾":"Gopf","𝔊":"Gfr","ǵ":"gacute","ğ":"gbreve","Ğ":"Gbreve","ĝ":"gcirc","Ĝ":"Gcirc","ġ":"gdot","Ġ":"Gdot","Ģ":"Gcedil","𝔥":"hfr","ℎ":"planckh","𝒽":"hscr","𝕙":"hopf","ℋ":"Hscr","ℌ":"Hfr","ℍ":"Hopf","ĥ":"hcirc","Ĥ":"Hcirc","ℏ":"hbar","ħ":"hstrok","Ħ":"Hstrok","𝕚":"iopf","𝔦":"ifr","𝒾":"iscr","ⅈ":"ii","𝕀":"Iopf","ℐ":"Iscr","ℑ":"Im","í":"iacute","Í":"Iacute","ì":"igrave","Ì":"Igrave","î":"icirc","Î":"Icirc","ï":"iuml","Ï":"Iuml","ĩ":"itilde","Ĩ":"Itilde","İ":"Idot","į":"iogon","Į":"Iogon","ī":"imacr","Ī":"Imacr","ij":"ijlig","IJ":"IJlig","ı":"imath","𝒿":"jscr","𝕛":"jopf","𝔧":"jfr","𝒥":"Jscr","𝔍":"Jfr","𝕁":"Jopf","ĵ":"jcirc","Ĵ":"Jcirc","ȷ":"jmath","𝕜":"kopf","𝓀":"kscr","𝔨":"kfr","𝒦":"Kscr","𝕂":"Kopf","𝔎":"Kfr","ķ":"kcedil","Ķ":"Kcedil","𝔩":"lfr","𝓁":"lscr","ℓ":"ell","𝕝":"lopf","ℒ":"Lscr","𝔏":"Lfr","𝕃":"Lopf","ĺ":"lacute","Ĺ":"Lacute","ľ":"lcaron","Ľ":"Lcaron","ļ":"lcedil","Ļ":"Lcedil","ł":"lstrok","Ł":"Lstrok","ŀ":"lmidot","Ŀ":"Lmidot","𝔪":"mfr","𝕞":"mopf","𝓂":"mscr","𝔐":"Mfr","𝕄":"Mopf","ℳ":"Mscr","𝔫":"nfr","𝕟":"nopf","𝓃":"nscr","ℕ":"Nopf","𝒩":"Nscr","𝔑":"Nfr","ń":"nacute","Ń":"Nacute","ň":"ncaron","Ň":"Ncaron","ñ":"ntilde","Ñ":"Ntilde","ņ":"ncedil","Ņ":"Ncedil","№":"numero","ŋ":"eng","Ŋ":"ENG","𝕠":"oopf","𝔬":"ofr","ℴ":"oscr","𝒪":"Oscr","𝔒":"Ofr","𝕆":"Oopf","º":"ordm","ó":"oacute","Ó":"Oacute","ò":"ograve","Ò":"Ograve","ô":"ocirc","Ô":"Ocirc","ö":"ouml","Ö":"Ouml","ő":"odblac","Ő":"Odblac","õ":"otilde","Õ":"Otilde","ø":"oslash","Ø":"Oslash","ō":"omacr","Ō":"Omacr","œ":"oelig","Œ":"OElig","𝔭":"pfr","𝓅":"pscr","𝕡":"popf","ℙ":"Popf","𝔓":"Pfr","𝒫":"Pscr","𝕢":"qopf","𝔮":"qfr","𝓆":"qscr","𝒬":"Qscr","𝔔":"Qfr","ℚ":"Qopf","ĸ":"kgreen","𝔯":"rfr","𝕣":"ropf","𝓇":"rscr","ℛ":"Rscr","ℜ":"Re","ℝ":"Ropf","ŕ":"racute","Ŕ":"Racute","ř":"rcaron","Ř":"Rcaron","ŗ":"rcedil","Ŗ":"Rcedil","𝕤":"sopf","𝓈":"sscr","𝔰":"sfr","𝕊":"Sopf","𝔖":"Sfr","𝒮":"Sscr","Ⓢ":"oS","ś":"sacute","Ś":"Sacute","ŝ":"scirc","Ŝ":"Scirc","š":"scaron","Š":"Scaron","ş":"scedil","Ş":"Scedil","ß":"szlig","𝔱":"tfr","𝓉":"tscr","𝕥":"topf","𝒯":"Tscr","𝔗":"Tfr","𝕋":"Topf","ť":"tcaron","Ť":"Tcaron","ţ":"tcedil","Ţ":"Tcedil","™":"trade","ŧ":"tstrok","Ŧ":"Tstrok","𝓊":"uscr","𝕦":"uopf","𝔲":"ufr","𝕌":"Uopf","𝔘":"Ufr","𝒰":"Uscr","ú":"uacute","Ú":"Uacute","ù":"ugrave","Ù":"Ugrave","ŭ":"ubreve","Ŭ":"Ubreve","û":"ucirc","Û":"Ucirc","ů":"uring","Ů":"Uring","ü":"uuml","Ü":"Uuml","ű":"udblac","Ű":"Udblac","ũ":"utilde","Ũ":"Utilde","ų":"uogon","Ų":"Uogon","ū":"umacr","Ū":"Umacr","𝔳":"vfr","𝕧":"vopf","𝓋":"vscr","𝔙":"Vfr","𝕍":"Vopf","𝒱":"Vscr","𝕨":"wopf","𝓌":"wscr","𝔴":"wfr","𝒲":"Wscr","𝕎":"Wopf","𝔚":"Wfr","ŵ":"wcirc","Ŵ":"Wcirc","𝔵":"xfr","𝓍":"xscr","𝕩":"xopf","𝕏":"Xopf","𝔛":"Xfr","𝒳":"Xscr","𝔶":"yfr","𝓎":"yscr","𝕪":"yopf","𝒴":"Yscr","𝔜":"Yfr","𝕐":"Yopf","ý":"yacute","Ý":"Yacute","ŷ":"ycirc","Ŷ":"Ycirc","ÿ":"yuml","Ÿ":"Yuml","𝓏":"zscr","𝔷":"zfr","𝕫":"zopf","ℨ":"Zfr","ℤ":"Zopf","𝒵":"Zscr","ź":"zacute","Ź":"Zacute","ž":"zcaron","Ž":"Zcaron","ż":"zdot","Ż":"Zdot","Ƶ":"imped","þ":"thorn","Þ":"THORN","ʼn":"napos","α":"alpha","Α":"Alpha","β":"beta","Β":"Beta","γ":"gamma","Γ":"Gamma","δ":"delta","Δ":"Delta","ε":"epsi","ϵ":"epsiv","Ε":"Epsilon","ϝ":"gammad","Ϝ":"Gammad","ζ":"zeta","Ζ":"Zeta","η":"eta","Η":"Eta","θ":"theta","ϑ":"thetav","Θ":"Theta","ι":"iota","Ι":"Iota","κ":"kappa","ϰ":"kappav","Κ":"Kappa","λ":"lambda","Λ":"Lambda","μ":"mu","µ":"micro","Μ":"Mu","ν":"nu","Ν":"Nu","ξ":"xi","Ξ":"Xi","ο":"omicron","Ο":"Omicron","π":"pi","ϖ":"piv","Π":"Pi","ρ":"rho","ϱ":"rhov","Ρ":"Rho","σ":"sigma","Σ":"Sigma","ς":"sigmaf","τ":"tau","Τ":"Tau","υ":"upsi","Υ":"Upsilon","ϒ":"Upsi","φ":"phi","ϕ":"phiv","Φ":"Phi","χ":"chi","Χ":"Chi","ψ":"psi","Ψ":"Psi","ω":"omega","Ω":"ohm","а":"acy","А":"Acy","б":"bcy","Б":"Bcy","в":"vcy","В":"Vcy","г":"gcy","Г":"Gcy","ѓ":"gjcy","Ѓ":"GJcy","д":"dcy","Д":"Dcy","ђ":"djcy","Ђ":"DJcy","е":"iecy","Е":"IEcy","ё":"iocy","Ё":"IOcy","є":"jukcy","Є":"Jukcy","ж":"zhcy","Ж":"ZHcy","з":"zcy","З":"Zcy","ѕ":"dscy","Ѕ":"DScy","и":"icy","И":"Icy","і":"iukcy","І":"Iukcy","ї":"yicy","Ї":"YIcy","й":"jcy","Й":"Jcy","ј":"jsercy","Ј":"Jsercy","к":"kcy","К":"Kcy","ќ":"kjcy","Ќ":"KJcy","л":"lcy","Л":"Lcy","љ":"ljcy","Љ":"LJcy","м":"mcy","М":"Mcy","н":"ncy","Н":"Ncy","њ":"njcy","Њ":"NJcy","о":"ocy","О":"Ocy","п":"pcy","П":"Pcy","р":"rcy","Р":"Rcy","с":"scy","С":"Scy","т":"tcy","Т":"Tcy","ћ":"tshcy","Ћ":"TSHcy","у":"ucy","У":"Ucy","ў":"ubrcy","Ў":"Ubrcy","ф":"fcy","Ф":"Fcy","х":"khcy","Х":"KHcy","ц":"tscy","Ц":"TScy","ч":"chcy","Ч":"CHcy","џ":"dzcy","Џ":"DZcy","ш":"shcy","Ш":"SHcy","щ":"shchcy","Щ":"SHCHcy","ъ":"hardcy","Ъ":"HARDcy","ы":"ycy","Ы":"Ycy","ь":"softcy","Ь":"SOFTcy","э":"ecy","Э":"Ecy","ю":"yucy","Ю":"YUcy","я":"yacy","Я":"YAcy","ℵ":"aleph","ℶ":"beth","ℷ":"gimel","ℸ":"daleth"},j={'"':"&quot;","&":"&amp;","'":"&#x27;","<":"&lt;",">":"&gt;","`":"&#x60;"},k=/&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/,l=/[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,m={aacute:"á",Aacute:"Á",abreve:"ă",Abreve:"Ă",ac:"∾",acd:"∿",acE:"∾̳",acirc:"â",Acirc:"Â",acute:"´",acy:"а",Acy:"А",aelig:"æ",AElig:"Æ",af:"⁡",afr:"𝔞",Afr:"𝔄",agrave:"à",Agrave:"À",alefsym:"ℵ",aleph:"ℵ",alpha:"α",Alpha:"Α",amacr:"ā",Amacr:"Ā",amalg:"⨿",amp:"&",AMP:"&",and:"∧",And:"⩓",andand:"⩕",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsd:"∡",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",aogon:"ą",Aogon:"Ą",aopf:"𝕒",Aopf:"𝔸",ap:"≈",apacir:"⩯",ape:"≊",apE:"⩰",apid:"≋",apos:"'",ApplyFunction:"⁡",approx:"≈",approxeq:"≊",aring:"å",Aring:"Å",ascr:"𝒶",Ascr:"𝒜",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",bcy:"б",Bcy:"Б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",beta:"β",Beta:"Β",beth:"ℶ",between:"≬",bfr:"𝔟",Bfr:"𝔅",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bnot:"⌐",bNot:"⫭",bopf:"𝕓",Bopf:"𝔹",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxhD:"╥",boxHd:"╤",boxHD:"╦",boxhu:"┴",boxhU:"╨",boxHu:"╧",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsol:"\\",bsolb:"⧅",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpe:"≏",bumpE:"⪮",bumpeq:"≏",Bumpeq:"≎",cacute:"ć",Cacute:"Ć",cap:"∩",Cap:"⋒",capand:"⩄",capbrcup:"⩉",capcap:"⩋",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",ccaron:"č",Ccaron:"Č",ccedil:"ç",Ccedil:"Ç",ccirc:"ĉ",Ccirc:"Ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",cdot:"ċ",Cdot:"Ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",chcy:"ч",CHcy:"Ч",check:"✓",checkmark:"✓",chi:"χ",Chi:"Χ",cir:"○",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cire:"≗",cirE:"⧃",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",colone:"≔",Colone:"⩴",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",cscr:"𝒸",Cscr:"𝒞",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cup:"∪",Cup:"⋓",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",dArr:"⇓",Darr:"↡",dash:"‐",dashv:"⊣",Dashv:"⫤",dbkarow:"⤏",dblac:"˝",dcaron:"ď",Dcaron:"Ď",dcy:"д",Dcy:"Д",dd:"ⅆ",DD:"ⅅ",ddagger:"‡",ddarr:"⇊",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",delta:"δ",Delta:"Δ",demptyv:"⦱",dfisht:"⥿",dfr:"𝔡",Dfr:"𝔇",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",djcy:"ђ",DJcy:"Ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",dopf:"𝕕",Dopf:"𝔻",dot:"˙",Dot:"¨",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",downarrow:"↓",Downarrow:"⇓",DownArrow:"↓",DownArrowBar:"⤓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVector:"↽",DownLeftVectorBar:"⥖",DownRightTeeVector:"⥟",DownRightVector:"⇁",DownRightVectorBar:"⥗",DownTee:"⊤",DownTeeArrow:"↧",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",dscr:"𝒹",Dscr:"𝒟",dscy:"ѕ",DScy:"Ѕ",dsol:"⧶",dstrok:"đ",Dstrok:"Đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",dzcy:"џ",DZcy:"Џ",dzigrarr:"⟿",eacute:"é",Eacute:"É",easter:"⩮",ecaron:"ě",Ecaron:"Ě",ecir:"≖",ecirc:"ê",Ecirc:"Ê",ecolon:"≕",ecy:"э",Ecy:"Э",eDDot:"⩷",edot:"ė",eDot:"≑",Edot:"Ė",ee:"ⅇ",efDot:"≒",efr:"𝔢",Efr:"𝔈",eg:"⪚",egrave:"è",Egrave:"È",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",emacr:"ē",Emacr:"Ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp:" ",emsp13:" ",emsp14:" ",eng:"ŋ",ENG:"Ŋ",ensp:" ",eogon:"ę",Eogon:"Ę",eopf:"𝕖",Eopf:"𝔼",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",epsilon:"ε",Epsilon:"Ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",esim:"≂",Esim:"⩳",eta:"η",Eta:"Η",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",fcy:"ф",Fcy:"Ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",ffr:"𝔣",Ffr:"𝔉",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",fopf:"𝕗",Fopf:"𝔽",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",gamma:"γ",Gamma:"Γ",gammad:"ϝ",Gammad:"Ϝ",gap:"⪆",gbreve:"ğ",Gbreve:"Ğ",Gcedil:"Ģ",gcirc:"ĝ",Gcirc:"Ĝ",gcy:"г",Gcy:"Г",gdot:"ġ",Gdot:"Ġ",ge:"≥",gE:"≧",gel:"⋛",gEl:"⪌",geq:"≥",geqq:"≧",geqslant:"⩾",ges:"⩾",gescc:"⪩",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",gfr:"𝔤",Gfr:"𝔊",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",gjcy:"ѓ",GJcy:"Ѓ",gl:"≷",gla:"⪥",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",gopf:"𝕘",Gopf:"𝔾",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",gscr:"ℊ",Gscr:"𝒢",gsim:"≳",gsime:"⪎",gsiml:"⪐",gt:">",Gt:"≫",GT:">",gtcc:"⪧",gtcir:"⩺",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",hardcy:"ъ",HARDcy:"Ъ",harr:"↔",hArr:"⇔",harrcir:"⥈",harrw:"↭",Hat:"^",hbar:"ℏ",hcirc:"ĥ",Hcirc:"Ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",hstrok:"ħ",Hstrok:"Ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",iacute:"í",Iacute:"Í",ic:"⁣",icirc:"î",Icirc:"Î",icy:"и",Icy:"И",Idot:"İ",iecy:"е",IEcy:"Е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",igrave:"ì",Igrave:"Ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",ijlig:"ij",IJlig:"IJ",Im:"ℑ",imacr:"ī",Imacr:"Ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",imof:"⊷",imped:"Ƶ",Implies:"⇒",in:"∈",incare:"℅",infin:"∞",infintie:"⧝",inodot:"ı",int:"∫",Int:"∬",intcal:"⊺",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"⁣",InvisibleTimes:"⁢",iocy:"ё",IOcy:"Ё",iogon:"į",Iogon:"Į",iopf:"𝕚",Iopf:"𝕀",iota:"ι",Iota:"Ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"⁢",itilde:"ĩ",Itilde:"Ĩ",iukcy:"і",Iukcy:"І",iuml:"ï",Iuml:"Ï",jcirc:"ĵ",Jcirc:"Ĵ",jcy:"й",Jcy:"Й",jfr:"𝔧",Jfr:"𝔍",jmath:"ȷ",jopf:"𝕛",Jopf:"𝕁",jscr:"𝒿",Jscr:"𝒥",jsercy:"ј",Jsercy:"Ј",jukcy:"є",Jukcy:"Є",kappa:"κ",Kappa:"Κ",kappav:"ϰ",kcedil:"ķ",Kcedil:"Ķ",kcy:"к",Kcy:"К",kfr:"𝔨",Kfr:"𝔎",kgreen:"ĸ",khcy:"х",KHcy:"Х",kjcy:"ќ",KJcy:"Ќ",kopf:"𝕜",Kopf:"𝕂",kscr:"𝓀",Kscr:"𝒦",lAarr:"⇚",lacute:"ĺ",Lacute:"Ĺ",laemptyv:"⦴",lagran:"ℒ",lambda:"λ",Lambda:"Λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larr:"←",lArr:"⇐",Larr:"↞",larrb:"⇤",larrbfs:"⤟",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",lat:"⪫",latail:"⤙",lAtail:"⤛",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",lcaron:"ľ",Lcaron:"Ľ",lcedil:"ļ",Lcedil:"Ļ",lceil:"⌈",lcub:"{",lcy:"л",Lcy:"Л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",leftarrow:"←",Leftarrow:"⇐",LeftArrow:"←",LeftArrowBar:"⇤",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVector:"⇃",LeftDownVectorBar:"⥙",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",Leftrightarrow:"⇔",LeftRightArrow:"↔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTee:"⊣",LeftTeeArrow:"↤",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangle:"⊲",LeftTriangleBar:"⧏",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVector:"↿",LeftUpVectorBar:"⥘",LeftVector:"↼",LeftVectorBar:"⥒",leg:"⋚",lEg:"⪋",leq:"≤",leqq:"≦",leqslant:"⩽",les:"⩽",lescc:"⪨",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",lfr:"𝔩",Lfr:"𝔏",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",ljcy:"љ",LJcy:"Љ",ll:"≪",Ll:"⋘",llarr:"⇇",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",lmidot:"ŀ",Lmidot:"Ŀ",lmoust:"⎰",lmoustache:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",Longleftarrow:"⟸",LongLeftArrow:"⟵",longleftrightarrow:"⟷",Longleftrightarrow:"⟺",LongLeftRightArrow:"⟷",longmapsto:"⟼",longrightarrow:"⟶",Longrightarrow:"⟹",LongRightArrow:"⟶",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",lopf:"𝕝",Lopf:"𝕃",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",lstrok:"ł",Lstrok:"Ł",lt:"<",Lt:"≪",LT:"<",ltcc:"⪦",ltcir:"⩹",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",map:"↦",Map:"⤅",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",mcy:"м",Mcy:"М",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",mfr:"𝔪",Mfr:"𝔐",mho:"℧",micro:"µ",mid:"∣",midast:"*",midcir:"⫰",middot:"·",minus:"−",minusb:"⊟",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",mopf:"𝕞",Mopf:"𝕄",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",mu:"μ",Mu:"Μ",multimap:"⊸",mumap:"⊸",nabla:"∇",nacute:"ń",Nacute:"Ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natur:"♮",natural:"♮",naturals:"ℕ",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",ncaron:"ň",Ncaron:"Ň",ncedil:"ņ",Ncedil:"Ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",ncy:"н",Ncy:"Н",ndash:"–",ne:"≠",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",nedot:"≐̸",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",nfr:"𝔫",Nfr:"𝔑",nge:"≱",ngE:"≧̸",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",ngt:"≯",nGt:"≫⃒",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",njcy:"њ",NJcy:"Њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nle:"≰",nlE:"≦̸",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nlt:"≮",nLt:"≪⃒",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"⁠",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",not:"¬",Not:"⫬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangle:"⋪",NotLeftTriangleBar:"⧏̸",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangle:"⋫",NotRightTriangleBar:"⧐̸",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",npar:"∦",nparallel:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",npre:"⪯̸",nprec:"⊀",npreceq:"⪯̸",nrarr:"↛",nrArr:"⇏",nrarrc:"⤳̸",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",nscr:"𝓃",Nscr:"𝒩",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsube:"⊈",nsubE:"⫅̸",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupe:"⊉",nsupE:"⫆̸",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",ntilde:"ñ",Ntilde:"Ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",nu:"ν",Nu:"Ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",oacute:"ó",Oacute:"Ó",oast:"⊛",ocir:"⊚",ocirc:"ô",Ocirc:"Ô",ocy:"о",Ocy:"О",odash:"⊝",odblac:"ő",Odblac:"Ő",odiv:"⨸",odot:"⊙",odsold:"⦼",oelig:"œ",OElig:"Œ",ofcir:"⦿",ofr:"𝔬",Ofr:"𝔒",ogon:"˛",ograve:"ò",Ograve:"Ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",omacr:"ō",Omacr:"Ō",omega:"ω",Omega:"Ω",omicron:"ο",Omicron:"Ο",omid:"⦶",ominus:"⊖",oopf:"𝕠",Oopf:"𝕆",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",or:"∨",Or:"⩔",orarr:"↻",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",oscr:"ℴ",Oscr:"𝒪",oslash:"ø",Oslash:"Ø",osol:"⊘",otilde:"õ",Otilde:"Õ",otimes:"⊗",Otimes:"⨷",otimesas:"⨶",ouml:"ö",Ouml:"Ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",par:"∥",para:"¶",parallel:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",pcy:"п",Pcy:"П",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",pfr:"𝔭",Pfr:"𝔓",phi:"φ",Phi:"Φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",pi:"π",Pi:"Π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plus:"+",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",pr:"≺",Pr:"⪻",prap:"⪷",prcue:"≼",pre:"⪯",prE:"⪳",prec:"≺",precapprox:"⪷",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportion:"∷",Proportional:"∝",propto:"∝",prsim:"≾",prurel:"⊰",pscr:"𝓅",Pscr:"𝒫",psi:"ψ",Psi:"Ψ",puncsp:" ",qfr:"𝔮",Qfr:"𝔔",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",qscr:"𝓆",Qscr:"𝒬",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",racute:"ŕ",Racute:"Ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarr:"→",rArr:"⇒",Rarr:"↠",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",rarrtl:"↣",Rarrtl:"⤖",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",rcaron:"ř",Rcaron:"Ř",rcedil:"ŗ",Rcedil:"Ŗ",rceil:"⌉",rcub:"}",rcy:"р",Rcy:"Р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",Re:"ℜ",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",rho:"ρ",Rho:"Ρ",rhov:"ϱ",RightAngleBracket:"⟩",rightarrow:"→",Rightarrow:"⇒",RightArrow:"→",RightArrowBar:"⇥",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVector:"⇂",RightDownVectorBar:"⥕",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTee:"⊢",RightTeeArrow:"↦",
+RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangle:"⊳",RightTriangleBar:"⧐",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVector:"↾",RightUpVectorBar:"⥔",RightVector:"⇀",RightVectorBar:"⥓",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"‏",rmoust:"⎱",rmoustache:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",sacute:"ś",Sacute:"Ś",sbquo:"‚",sc:"≻",Sc:"⪼",scap:"⪸",scaron:"š",Scaron:"Š",sccue:"≽",sce:"⪰",scE:"⪴",scedil:"ş",Scedil:"Ş",scirc:"ŝ",Scirc:"Ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",scy:"с",Scy:"С",sdot:"⋅",sdotb:"⊡",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",sfr:"𝔰",Sfr:"𝔖",sfrown:"⌢",sharp:"♯",shchcy:"щ",SHCHcy:"Щ",shcy:"ш",SHcy:"Ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"­",sigma:"σ",Sigma:"Σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",softcy:"ь",SOFTcy:"Ь",sol:"/",solb:"⧄",solbar:"⌿",sopf:"𝕤",Sopf:"𝕊",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",squ:"□",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squf:"▪",srarr:"→",sscr:"𝓈",Sscr:"𝒮",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",star:"☆",Star:"⋆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",sube:"⊆",subE:"⫅",subedot:"⫃",submult:"⫁",subne:"⊊",subnE:"⫋",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succ:"≻",succapprox:"⪸",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup:"⊃",Sup:"⋑",sup1:"¹",sup2:"²",sup3:"³",supdot:"⪾",supdsub:"⫘",supe:"⊇",supE:"⫆",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supne:"⊋",supnE:"⫌",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",tau:"τ",Tau:"Τ",tbrk:"⎴",tcaron:"ť",Tcaron:"Ť",tcedil:"ţ",Tcedil:"Ţ",tcy:"т",Tcy:"Т",tdot:"⃛",telrec:"⌕",tfr:"𝔱",Tfr:"𝔗",there4:"∴",therefore:"∴",Therefore:"∴",theta:"θ",Theta:"Θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:"  ",thinsp:" ",ThinSpace:" ",thkap:"≈",thksim:"∼",thorn:"þ",THORN:"Þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",times:"×",timesb:"⊠",timesbar:"⨱",timesd:"⨰",tint:"∭",toea:"⤨",top:"⊤",topbot:"⌶",topcir:"⫱",topf:"𝕥",Topf:"𝕋",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",tscr:"𝓉",Tscr:"𝒯",tscy:"ц",TScy:"Ц",tshcy:"ћ",TSHcy:"Ћ",tstrok:"ŧ",Tstrok:"Ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",uacute:"ú",Uacute:"Ú",uarr:"↑",uArr:"⇑",Uarr:"↟",Uarrocir:"⥉",ubrcy:"ў",Ubrcy:"Ў",ubreve:"ŭ",Ubreve:"Ŭ",ucirc:"û",Ucirc:"Û",ucy:"у",Ucy:"У",udarr:"⇅",udblac:"ű",Udblac:"Ű",udhar:"⥮",ufisht:"⥾",ufr:"𝔲",Ufr:"𝔘",ugrave:"ù",Ugrave:"Ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",umacr:"ū",Umacr:"Ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",uogon:"ų",Uogon:"Ų",uopf:"𝕦",Uopf:"𝕌",uparrow:"↑",Uparrow:"⇑",UpArrow:"↑",UpArrowBar:"⤒",UpArrowDownArrow:"⇅",updownarrow:"↕",Updownarrow:"⇕",UpDownArrow:"↕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",upsilon:"υ",Upsilon:"Υ",UpTee:"⊥",UpTeeArrow:"↥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",uring:"ů",Uring:"Ů",urtri:"◹",uscr:"𝓊",Uscr:"𝒰",utdot:"⋰",utilde:"ũ",Utilde:"Ũ",utri:"▵",utrif:"▴",uuarr:"⇈",uuml:"ü",Uuml:"Ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",vcy:"в",Vcy:"В",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",vee:"∨",Vee:"⋁",veebar:"⊻",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",vfr:"𝔳",Vfr:"𝔙",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",vopf:"𝕧",Vopf:"𝕍",vprop:"∝",vrtri:"⊳",vscr:"𝓋",Vscr:"𝒱",vsubne:"⊊︀",vsubnE:"⫋︀",vsupne:"⊋︀",vsupnE:"⫌︀",Vvdash:"⊪",vzigzag:"⦚",wcirc:"ŵ",Wcirc:"Ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",wfr:"𝔴",Wfr:"𝔚",wopf:"𝕨",Wopf:"𝕎",wp:"℘",wr:"≀",wreath:"≀",wscr:"𝓌",Wscr:"𝒲",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",xfr:"𝔵",Xfr:"𝔛",xharr:"⟷",xhArr:"⟺",xi:"ξ",Xi:"Ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",xopf:"𝕩",Xopf:"𝕏",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",xscr:"𝓍",Xscr:"𝒳",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",yacute:"ý",Yacute:"Ý",yacy:"я",YAcy:"Я",ycirc:"ŷ",Ycirc:"Ŷ",ycy:"ы",Ycy:"Ы",yen:"¥",yfr:"𝔶",Yfr:"𝔜",yicy:"ї",YIcy:"Ї",yopf:"𝕪",Yopf:"𝕐",yscr:"𝓎",Yscr:"𝒴",yucy:"ю",YUcy:"Ю",yuml:"ÿ",Yuml:"Ÿ",zacute:"ź",Zacute:"Ź",zcaron:"ž",Zcaron:"Ž",zcy:"з",Zcy:"З",zdot:"ż",Zdot:"Ż",zeetrf:"ℨ",ZeroWidthSpace:"​",zeta:"ζ",Zeta:"Ζ",zfr:"𝔷",Zfr:"ℨ",zhcy:"ж",ZHcy:"Ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",zscr:"𝓏",Zscr:"𝒵",zwj:"‍",zwnj:"‌"},n={aacute:"á",Aacute:"Á",acirc:"â",Acirc:"Â",acute:"´",aelig:"æ",AElig:"Æ",agrave:"à",Agrave:"À",amp:"&",AMP:"&",aring:"å",Aring:"Å",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",brvbar:"¦",ccedil:"ç",Ccedil:"Ç",cedil:"¸",cent:"¢",copy:"©",COPY:"©",curren:"¤",deg:"°",divide:"÷",eacute:"é",Eacute:"É",ecirc:"ê",Ecirc:"Ê",egrave:"è",Egrave:"È",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",frac12:"½",frac14:"¼",frac34:"¾",gt:">",GT:">",iacute:"í",Iacute:"Í",icirc:"î",Icirc:"Î",iexcl:"¡",igrave:"ì",Igrave:"Ì",iquest:"¿",iuml:"ï",Iuml:"Ï",laquo:"«",lt:"<",LT:"<",macr:"¯",micro:"µ",middot:"·",nbsp:" ",not:"¬",ntilde:"ñ",Ntilde:"Ñ",oacute:"ó",Oacute:"Ó",ocirc:"ô",Ocirc:"Ô",ograve:"ò",Ograve:"Ò",ordf:"ª",ordm:"º",oslash:"ø",Oslash:"Ø",otilde:"õ",Otilde:"Õ",ouml:"ö",Ouml:"Ö",para:"¶",plusmn:"±",pound:"£",quot:'"',QUOT:'"',raquo:"»",reg:"®",REG:"®",sect:"§",shy:"­",sup1:"¹",sup2:"²",sup3:"³",szlig:"ß",thorn:"þ",THORN:"Þ",times:"×",uacute:"ú",Uacute:"Ú",ucirc:"û",Ucirc:"Û",ugrave:"ù",Ugrave:"Ù",uml:"¨",uuml:"ü",Uuml:"Ü",yacute:"ý",Yacute:"Ý",yen:"¥",yuml:"ÿ"},o={0:"�",128:"€",130:"‚",131:"ƒ",132:"„",133:"…",134:"†",135:"‡",136:"ˆ",137:"‰",138:"Š",139:"‹",140:"Œ",142:"Ž",145:"‘",146:"’",147:"“",148:"”",149:"•",150:"–",151:"—",152:"˜",153:"™",154:"š",155:"›",156:"œ",158:"ž",159:"Ÿ"},p=[1,2,3,4,5,6,7,8,11,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,64976,64977,64978,64979,64980,64981,64982,64983,64984,64985,64986,64987,64988,64989,64990,64991,64992,64993,64994,64995,64996,64997,64998,64999,65e3,65001,65002,65003,65004,65005,65006,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111],q=String.fromCharCode,r={},s=r.hasOwnProperty,t=function(a,b){return s.call(a,b)},u=function(a,b){for(var c=-1,d=a.length;++c<d;)if(a[c]==b)return!0;return!1},v=function(a,b){if(!a)return b;var c,d={};for(c in b)d[c]=t(a,c)?a[c]:b[c];return d},w=function(a,b){var c="";return a>=55296&&a<=57343||a>1114111?(b&&z("character reference outside the permissible Unicode range"),"�"):t(o,a)?(b&&z("disallowed character reference"),o[a]):(b&&u(p,a)&&z("disallowed character reference"),a>65535&&(a-=65536,c+=q(a>>>10&1023|55296),a=56320|1023&a),c+=q(a))},x=function(a){return"&#x"+a.toString(16).toUpperCase()+";"},y=function(a){return"&#"+a+";"},z=function(a){throw Error("Parse error: "+a)},A=function(a,b){b=v(b,A.options),b.strict&&l.test(a)&&z("forbidden code point");var c=b.encodeEverything,d=b.useNamedReferences,e=b.allowUnsafeSymbols,f=b.decimal?y:x,g=function(a){return f(a.charCodeAt(0))};return c?(a=a.replace(/[\x01-\x7F]/g,function(a){return d&&t(i,a)?"&"+i[a]+";":g(a)}),d&&(a=a.replace(/&gt;\u20D2/g,"&nvgt;").replace(/&lt;\u20D2/g,"&nvlt;").replace(/&#x66;&#x6A;/g,"&fjlig;")),d&&(a=a.replace(h,function(a){return"&"+i[a]+";"}))):d?(e||(a=a.replace(/["&'<>`]/g,function(a){return"&"+i[a]+";"})),a=a.replace(/&gt;\u20D2/g,"&nvgt;").replace(/&lt;\u20D2/g,"&nvlt;"),a=a.replace(h,function(a){return"&"+i[a]+";"})):e||(a=a.replace(/["&'<>`]/g,g)),a.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,function(a){return f(1024*(a.charCodeAt(0)-55296)+a.charCodeAt(1)-56320+65536)}).replace(/[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g,g)};A.options={allowUnsafeSymbols:!1,encodeEverything:!1,strict:!1,useNamedReferences:!1,decimal:!1};var B=function(a,b){b=v(b,B.options);var c=b.strict;return c&&k.test(a)&&z("malformed character reference"),a.replace(/&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)([=a-zA-Z0-9])?/g,function(a,d,e,f,g,h,i,j){var k,l,o,p,q,r;return d?(o=d,l=e,c&&!l&&z("character reference was not terminated by a semicolon"),k=parseInt(o,10),w(k,c)):f?(p=f,l=g,c&&!l&&z("character reference was not terminated by a semicolon"),k=parseInt(p,16),w(k,c)):h?(q=h,t(m,q)?m[q]:(c&&z("named character reference was not terminated by a semicolon"),a)):(q=i,r=j,r&&b.isAttributeValue?(c&&"="==r&&z("`&` did not start a character reference"),a):(c&&z("named character reference was not terminated by a semicolon"),n[q]+(r||"")))})};B.options={isAttributeValue:!1,strict:!1};var C=function(a){return a.replace(/["&'<>`]/g,function(a){return j[a]})},D={version:"1.1.1",encode:A,decode:B,escape:C,unescape:B};if("function"==typeof define&&"object"==typeof define.amd&&define.amd)define(function(){return D});else if(e&&!e.nodeType)if(f)f.exports=D;else for(var E in D)t(D,E)&&(e[E]=D[E]);else d.he=D}(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],102:[function(a,b,c){var d=a("http"),e=b.exports;for(var f in d)d.hasOwnProperty(f)&&(e[f]=d[f]);e.request=function(a,b){return a||(a={}),a.scheme="https",a.protocol="https:",d.request.call(this,a,b)}},{http:151}],103:[function(a,b,c){c.read=function(a,b,c,d,e){var f,g,h=8*e-d-1,i=(1<<h)-1,j=i>>1,k=-7,l=c?e-1:0,m=c?-1:1,n=a[b+l];for(l+=m,f=n&(1<<-k)-1,n>>=-k,k+=h;k>0;f=256*f+a[b+l],l+=m,k-=8);for(g=f&(1<<-k)-1,f>>=-k,k+=d;k>0;g=256*g+a[b+l],l+=m,k-=8);if(0===f)f=1-j;else{if(f===i)return g?NaN:1/0*(n?-1:1);g+=Math.pow(2,d),f-=j}return(n?-1:1)*g*Math.pow(2,f-d)},c.write=function(a,b,c,d,e,f){var g,h,i,j=8*f-e-1,k=(1<<j)-1,l=k>>1,m=23===e?Math.pow(2,-24)-Math.pow(2,-77):0,n=d?0:f-1,o=d?1:-1,p=b<0||0===b&&1/b<0?1:0;for(b=Math.abs(b),isNaN(b)||b===1/0?(h=isNaN(b)?1:0,g=k):(g=Math.floor(Math.log(b)/Math.LN2),b*(i=Math.pow(2,-g))<1&&(g--,i*=2),b+=g+l>=1?m/i:m*Math.pow(2,1-l),b*i>=2&&(g++,i/=2),g+l>=k?(h=0,g=k):g+l>=1?(h=(b*i-1)*Math.pow(2,e),g+=l):(h=b*Math.pow(2,l-1)*Math.pow(2,e),g=0));e>=8;a[c+n]=255&h,n+=o,h/=256,e-=8);for(g=g<<e|h,j+=e;j>0;a[c+n]=255&g,n+=o,g/=256,j-=8);a[c+n-o]|=128*p}},{}],104:[function(a,b,c){"function"==typeof Object.create?b.exports=function(a,b){a.super_=b,a.prototype=Object.create(b.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}})}:b.exports=function(a,b){a.super_=b;var c=function(){};c.prototype=b.prototype,a.prototype=new c,a.prototype.constructor=a}},{}],105:[function(a,b,c){function d(a){return!!a.constructor&&"function"==typeof a.constructor.isBuffer&&a.constructor.isBuffer(a)}function e(a){return"function"==typeof a.readFloatLE&&"function"==typeof a.slice&&d(a.slice(0,0))}b.exports=function(a){return null!=a&&(d(a)||e(a)||!!a._isBuffer)}},{}],106:[function(a,b,c){var d={}.toString;b.exports=Array.isArray||function(a){return"[object Array]"==d.call(a)}},{}],107:[function(a,b,c){"use strict";function d(a){return a.source.slice(1,-1)}var e=a("xml-char-classes");b.exports=new RegExp("^["+d(e.letter)+"_]["+d(e.letter)+d(e.digit)+"\\.\\-_"+d(e.combiningChar)+d(e.extender)+"]*$")},{"xml-char-classes":164}],108:[function(a,b,c){c.endianness=function(){return"LE"},c.hostname=function(){return"undefined"!=typeof location?location.hostname:""},c.loadavg=function(){return[]},c.uptime=function(){return 0},c.freemem=function(){return Number.MAX_VALUE},c.totalmem=function(){return Number.MAX_VALUE},c.cpus=function(){return[]},c.type=function(){return"Browser"},c.release=function(){return"undefined"!=typeof navigator?navigator.appVersion:""},c.networkInterfaces=c.getNetworkInterfaces=function(){return{}},c.arch=function(){return"javascript"},c.platform=function(){return"browser"},c.tmpdir=c.tmpDir=function(){return"/tmp"},c.EOL="\n"},{}],109:[function(a,b,c){(function(a){function b(a,b){for(var c=0,d=a.length-1;d>=0;d--){var e=a[d];"."===e?a.splice(d,1):".."===e?(a.splice(d,1),c++):c&&(a.splice(d,1),c--)}if(b)for(;c--;c)a.unshift("..");return a}function d(a,b){if(a.filter)return a.filter(b);for(var c=[],d=0;d<a.length;d++)b(a[d],d,a)&&c.push(a[d]);return c}var e=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/,f=function(a){return e.exec(a).slice(1)};c.resolve=function(){for(var c="",e=!1,f=arguments.length-1;f>=-1&&!e;f--){var g=f>=0?arguments[f]:a.cwd();if("string"!=typeof g)throw new TypeError("Arguments to path.resolve must be strings");g&&(c=g+"/"+c,e="/"===g.charAt(0))}return c=b(d(c.split("/"),function(a){return!!a}),!e).join("/"),(e?"/":"")+c||"."},c.normalize=function(a){var e=c.isAbsolute(a),f="/"===g(a,-1);return a=b(d(a.split("/"),function(a){return!!a}),!e).join("/"),a||e||(a="."),a&&f&&(a+="/"),(e?"/":"")+a},c.isAbsolute=function(a){return"/"===a.charAt(0)},c.join=function(){var a=Array.prototype.slice.call(arguments,0);return c.normalize(d(a,function(a,b){if("string"!=typeof a)throw new TypeError("Arguments to path.join must be strings");return a}).join("/"))},c.relative=function(a,b){function d(a){for(var b=0;b<a.length&&""===a[b];b++);for(var c=a.length-1;c>=0&&""===a[c];c--);return b>c?[]:a.slice(b,c-b+1)}a=c.resolve(a).substr(1),b=c.resolve(b).substr(1);for(var e=d(a.split("/")),f=d(b.split("/")),g=Math.min(e.length,f.length),h=g,i=0;i<g;i++)if(e[i]!==f[i]){h=i;break}for(var j=[],i=h;i<e.length;i++)j.push("..");return j=j.concat(f.slice(h)),j.join("/")},c.sep="/",c.delimiter=":",c.dirname=function(a){var b=f(a),c=b[0],d=b[1];return c||d?(d&&(d=d.substr(0,d.length-1)),c+d):"."},c.basename=function(a,b){var c=f(a)[2];return b&&c.substr(-1*b.length)===b&&(c=c.substr(0,c.length-b.length)),c},c.extname=function(a){return f(a)[3]};var g="b"==="ab".substr(-1)?function(a,b,c){return a.substr(b,c)}:function(a,b,c){return b<0&&(b=a.length+b),a.substr(b,c)}}).call(this,a("_process"))},{_process:111}],110:[function(a,b,c){(function(a){"use strict";function c(b,c,d,e){if("function"!=typeof b)throw new TypeError('"callback" argument must be a function');var f,g,h=arguments.length;switch(h){case 0:case 1:return a.nextTick(b);case 2:return a.nextTick(function(){b.call(null,c)});case 3:return a.nextTick(function(){b.call(null,c,d)});case 4:return a.nextTick(function(){b.call(null,c,d,e)});default:for(f=new Array(h-1),g=0;g<f.length;)f[g++]=arguments[g];return a.nextTick(function(){b.apply(null,f)})}}!a.version||0===a.version.indexOf("v0.")||0===a.version.indexOf("v1.")&&0!==a.version.indexOf("v1.8.")?b.exports=c:b.exports=a.nextTick}).call(this,a("_process"))},{_process:111}],111:[function(a,b,c){function d(){throw new Error("setTimeout has not been defined")}function e(){throw new Error("clearTimeout has not been defined")}function f(a){if(l===setTimeout)return setTimeout(a,0);if((l===d||!l)&&setTimeout)return l=setTimeout,setTimeout(a,0);try{return l(a,0)}catch(b){try{return l.call(null,a,0)}catch(b){return l.call(this,a,0)}}}function g(a){if(m===clearTimeout)return clearTimeout(a);if((m===e||!m)&&clearTimeout)return m=clearTimeout,clearTimeout(a);try{return m(a)}catch(b){try{return m.call(null,a)}catch(b){return m.call(this,a)}}}function h(){q&&o&&(q=!1,o.length?p=o.concat(p):r=-1,p.length&&i())}function i(){if(!q){var a=f(h);q=!0;for(var b=p.length;b;){for(o=p,p=[];++r<b;)o&&o[r].run();r=-1,b=p.length}o=null,q=!1,g(a)}}function j(a,b){this.fun=a,this.array=b}function k(){}var l,m,n=b.exports={};!function(){try{l="function"==typeof setTimeout?setTimeout:d}catch(a){l=d}try{m="function"==typeof clearTimeout?clearTimeout:e}catch(a){m=e}}();var o,p=[],q=!1,r=-1;n.nextTick=function(a){var b=new Array(arguments.length-1);if(arguments.length>1)for(var c=1;c<arguments.length;c++)b[c-1]=arguments[c];p.push(new j(a,b)),1!==p.length||q||f(i)},j.prototype.run=function(){this.fun.apply(null,this.array)},n.title="browser",n.browser=!0,n.env={},n.argv=[],n.version="",n.versions={},n.on=k,n.addListener=k,n.once=k,n.off=k,n.removeListener=k,n.removeAllListeners=k,n.emit=k,n.binding=function(a){throw new Error("process.binding is not supported")},n.cwd=function(){return"/"},n.chdir=function(a){throw new Error("process.chdir is not supported")},n.umask=function(){return 0}},{}],112:[function(a,b,c){(function(a){!function(d){function e(a){throw new RangeError(H[a])}function f(a,b){for(var c=a.length,d=[];c--;)d[c]=b(a[c]);return d}function g(a,b){var c=a.split("@"),d="";return c.length>1&&(d=c[0]+"@",a=c[1]),a=a.replace(G,"."),d+f(a.split("."),b).join(".")}function h(a){for(var b,c,d=[],e=0,f=a.length;e<f;)b=a.charCodeAt(e++),b>=55296&&b<=56319&&e<f?(c=a.charCodeAt(e++),56320==(64512&c)?d.push(((1023&b)<<10)+(1023&c)+65536):(d.push(b),e--)):d.push(b);return d}function i(a){return f(a,function(a){var b="";return a>65535&&(a-=65536,b+=K(a>>>10&1023|55296),a=56320|1023&a),b+=K(a)}).join("")}function j(a){return a-48<10?a-22:a-65<26?a-65:a-97<26?a-97:w}function k(a,b){return a+22+75*(a<26)-((0!=b)<<5)}function l(a,b,c){var d=0;for(a=c?J(a/A):a>>1,a+=J(a/b);a>I*y>>1;d+=w)a=J(a/I);return J(d+(I+1)*a/(a+z))}function m(a){var b,c,d,f,g,h,k,m,n,o,p=[],q=a.length,r=0,s=C,t=B;for(c=a.lastIndexOf(D),c<0&&(c=0),d=0;d<c;++d)a.charCodeAt(d)>=128&&e("not-basic"),p.push(a.charCodeAt(d));for(f=c>0?c+1:0;f<q;){for(g=r,h=1,k=w;f>=q&&e("invalid-input"),m=j(a.charCodeAt(f++)),(m>=w||m>J((v-r)/h))&&e("overflow"),r+=m*h,n=k<=t?x:k>=t+y?y:k-t,!(m<n);k+=w)o=w-n,h>J(v/o)&&e("overflow"),h*=o;b=p.length+1,t=l(r-g,b,0==g),J(r/b)>v-s&&e("overflow"),s+=J(r/b),r%=b,p.splice(r++,0,s)}return i(p)}function n(a){var b,c,d,f,g,i,j,m,n,o,p,q,r,s,t,u=[];for(a=h(a),q=a.length,b=C,c=0,g=B,i=0;i<q;++i)(p=a[i])<128&&u.push(K(p));for(d=f=u.length,f&&u.push(D);d<q;){for(j=v,i=0;i<q;++i)(p=a[i])>=b&&p<j&&(j=p);for(r=d+1,j-b>J((v-c)/r)&&e("overflow"),c+=(j-b)*r,b=j,i=0;i<q;++i)if(p=a[i],p<b&&++c>v&&e("overflow"),p==b){for(m=c,n=w;o=n<=g?x:n>=g+y?y:n-g,!(m<o);n+=w)t=m-o,s=w-o,u.push(K(k(o+t%s,0))),m=J(t/s);u.push(K(k(m,0))),g=l(c,r,d==f),c=0,++d}++c,++b}return u.join("")}function o(a){return g(a,function(a){return E.test(a)?m(a.slice(4).toLowerCase()):a})}function p(a){return g(a,function(a){return F.test(a)?"xn--"+n(a):a})}var q="object"==typeof c&&c&&!c.nodeType&&c,r="object"==typeof b&&b&&!b.nodeType&&b,s="object"==typeof a&&a;s.global!==s&&s.window!==s&&s.self!==s||(d=s);var t,u,v=2147483647,w=36,x=1,y=26,z=38,A=700,B=72,C=128,D="-",E=/^xn--/,F=/[^\x20-\x7E]/,G=/[\x2E\u3002\uFF0E\uFF61]/g,H={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},I=w-x,J=Math.floor,K=String.fromCharCode;if(t={version:"1.4.1",ucs2:{decode:h,encode:i},decode:m,encode:n,toASCII:p,toUnicode:o},"function"==typeof define&&"object"==typeof define.amd&&define.amd)define("punycode",function(){return t});else if(q&&r)if(b.exports==q)r.exports=t;else for(u in t)t.hasOwnProperty(u)&&(q[u]=t[u]);else d.punycode=t}(this)}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],113:[function(a,b,c){"use strict";function d(a,b){return Object.prototype.hasOwnProperty.call(a,b)}b.exports=function(a,b,c,f){b=b||"&",c=c||"=";var g={};if("string"!=typeof a||0===a.length)return g;a=a.split(b);var h=1e3;f&&"number"==typeof f.maxKeys&&(h=f.maxKeys);var i=a.length;h>0&&i>h&&(i=h);for(var j=0;j<i;++j){var k,l,m,n,o=a[j].replace(/\+/g,"%20"),p=o.indexOf(c);p>=0?(k=o.substr(0,p),l=o.substr(p+1)):(k=o,l=""),m=decodeURIComponent(k),n=decodeURIComponent(l),d(g,m)?e(g[m])?g[m].push(n):g[m]=[g[m],n]:g[m]=n}return g};var e=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)}},{}],114:[function(a,b,c){"use strict";function d(a,b){if(a.map)return a.map(b);for(var c=[],d=0;d<a.length;d++)c.push(b(a[d],d));return c}var e=function(a){switch(typeof a){case"string":return a;case"boolean":return a?"true":"false";case"number":return isFinite(a)?a:"";default:return""}};b.exports=function(a,b,c,h){return b=b||"&",c=c||"=",null===a&&(a=void 0),"object"==typeof a?d(g(a),function(g){var h=encodeURIComponent(e(g))+c;return f(a[g])?d(a[g],function(a){return h+encodeURIComponent(e(a))}).join(b):h+encodeURIComponent(e(a[g]))}).join(b):h?encodeURIComponent(e(h))+c+encodeURIComponent(e(a)):""};var f=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)},g=Object.keys||function(a){var b=[];for(var c in a)Object.prototype.hasOwnProperty.call(a,c)&&b.push(c);return b}},{}],115:[function(a,b,c){"use strict";c.decode=c.parse=a("./decode"),c.encode=c.stringify=a("./encode")},{"./decode":113,"./encode":114}],116:[function(a,b,c){"use strict";function d(a){if(!(this instanceof d))return new d(a);j.call(this,a),k.call(this,a),a&&a.readable===!1&&(this.readable=!1),a&&a.writable===!1&&(this.writable=!1),this.allowHalfOpen=!0,a&&a.allowHalfOpen===!1&&(this.allowHalfOpen=!1),this.once("end",e)}function e(){this.allowHalfOpen||this._writableState.ended||h(f,this)}function f(a){a.end()}var g=Object.keys||function(a){var b=[];for(var c in a)b.push(c);return b};b.exports=d;var h=a("process-nextick-args"),i=a("core-util-is");i.inherits=a("inherits");var j=a("./_stream_readable"),k=a("./_stream_writable");i.inherits(d,j);for(var l=g(k.prototype),m=0;m<l.length;m++){var n=l[m];d.prototype[n]||(d.prototype[n]=k.prototype[n])}},{"./_stream_readable":118,"./_stream_writable":120,"core-util-is":99,inherits:104,"process-nextick-args":110}],117:[function(a,b,c){"use strict";function d(a){if(!(this instanceof d))return new d(a);e.call(this,a)}b.exports=d;var e=a("./_stream_transform"),f=a("core-util-is");f.inherits=a("inherits"),f.inherits(d,e),d.prototype._transform=function(a,b,c){c(null,a)}},{"./_stream_transform":119,"core-util-is":99,inherits:104}],118:[function(a,b,c){(function(c){"use strict";function d(a,b,c){if("function"==typeof a.prependListener)return a.prependListener(b,c);a._events&&a._events[b]?F(a._events[b])?a._events[b].unshift(c):a._events[b]=[c,a._events[b]]:a.on(b,c)}function e(b,c){D=D||a("./_stream_duplex"),b=b||{},this.objectMode=!!b.objectMode,c instanceof D&&(this.objectMode=this.objectMode||!!b.readableObjectMode);var d=b.highWaterMark,e=this.objectMode?16:16384;this.highWaterMark=d||0===d?d:e,this.highWaterMark=~~this.highWaterMark,this.buffer=new O,this.length=0,this.pipes=null,this.pipesCount=0,this.flowing=null,this.ended=!1,this.endEmitted=!1,this.reading=!1,this.sync=!0,this.needReadable=!1,this.emittedReadable=!1,this.readableListening=!1,this.resumeScheduled=!1,this.defaultEncoding=b.defaultEncoding||"utf8",this.ranOut=!1,this.awaitDrain=0,this.readingMore=!1,this.decoder=null,this.encoding=null,b.encoding&&(N||(N=a("string_decoder/").StringDecoder),this.decoder=new N(b.encoding),this.encoding=b.encoding)}function f(b){if(D=D||a("./_stream_duplex"),!(this instanceof f))return new f(b);this._readableState=new e(b,this),this.readable=!0,b&&"function"==typeof b.read&&(this._read=b.read),G.call(this)}function g(a,b,c,d,e){var f=k(b,c);if(f)a.emit("error",f);else if(null===c)b.reading=!1,l(a,b);else if(b.objectMode||c&&c.length>0)if(b.ended&&!e){var g=new Error("stream.push() after EOF");a.emit("error",g)}else if(b.endEmitted&&e){var i=new Error("stream.unshift() after end event");a.emit("error",i)}else{var j;!b.decoder||e||d||(c=b.decoder.write(c),j=!b.objectMode&&0===c.length),e||(b.reading=!1),j||(b.flowing&&0===b.length&&!b.sync?(a.emit("data",c),a.read(0)):(b.length+=b.objectMode?1:c.length,e?b.buffer.unshift(c):b.buffer.push(c),b.needReadable&&m(a))),o(a,b)}else e||(b.reading=!1);return h(b)}function h(a){return!a.ended&&(a.needReadable||a.length<a.highWaterMark||0===a.length)}function i(a){return a>=P?a=P:(a--,a|=a>>>1,a|=a>>>2,a|=a>>>4,a|=a>>>8,a|=a>>>16,a++),a}function j(a,b){return a<=0||0===b.length&&b.ended?0:b.objectMode?1:a!==a?b.flowing&&b.length?b.buffer.head.data.length:b.length:(a>b.highWaterMark&&(b.highWaterMark=i(a)),a<=b.length?a:b.ended?b.length:(b.needReadable=!0,0))}function k(a,b){var c=null;return I.isBuffer(b)||"string"==typeof b||null===b||void 0===b||a.objectMode||(c=new TypeError("Invalid non-string/buffer chunk")),c}function l(a,b){if(!b.ended){if(b.decoder){var c=b.decoder.end();c&&c.length&&(b.buffer.push(c),b.length+=b.objectMode?1:c.length)}b.ended=!0,m(a)}}function m(a){var b=a._readableState;b.needReadable=!1,b.emittedReadable||(M("emitReadable",b.flowing),b.emittedReadable=!0,b.sync?E(n,a):n(a))}function n(a){M("emit readable"),a.emit("readable"),u(a)}function o(a,b){b.readingMore||(b.readingMore=!0,E(p,a,b))}function p(a,b){for(var c=b.length;!b.reading&&!b.flowing&&!b.ended&&b.length<b.highWaterMark&&(M("maybeReadMore read 0"),a.read(0),c!==b.length);)c=b.length;b.readingMore=!1}function q(a){return function(){var b=a._readableState;M("pipeOnDrain",b.awaitDrain),b.awaitDrain&&b.awaitDrain--,0===b.awaitDrain&&H(a,"data")&&(b.flowing=!0,u(a))}}function r(a){M("readable nexttick read 0"),a.read(0)}function s(a,b){b.resumeScheduled||(b.resumeScheduled=!0,E(t,a,b))}function t(a,b){b.reading||(M("resume read 0"),a.read(0)),b.resumeScheduled=!1,b.awaitDrain=0,a.emit("resume"),u(a),b.flowing&&!b.reading&&a.read(0)}function u(a){var b=a._readableState;for(M("flow",b.flowing);b.flowing&&null!==a.read(););}function v(a,b){if(0===b.length)return null;var c;return b.objectMode?c=b.buffer.shift():!a||a>=b.length?(c=b.decoder?b.buffer.join(""):1===b.buffer.length?b.buffer.head.data:b.buffer.concat(b.length),b.buffer.clear()):c=w(a,b.buffer,b.decoder),c}function w(a,b,c){var d;return a<b.head.data.length?(d=b.head.data.slice(0,a),b.head.data=b.head.data.slice(a)):d=a===b.head.data.length?b.shift():c?x(a,b):y(a,b),d}function x(a,b){var c=b.head,d=1,e=c.data;for(a-=e.length;c=c.next;){var f=c.data,g=a>f.length?f.length:a;if(e+=g===f.length?f:f.slice(0,a),0===(a-=g)){g===f.length?(++d,c.next?b.head=c.next:b.head=b.tail=null):(b.head=c,c.data=f.slice(g));break}++d}return b.length-=d,e}function y(a,b){var c=J.allocUnsafe(a),d=b.head,e=1;for(d.data.copy(c),a-=d.data.length;d=d.next;){var f=d.data,g=a>f.length?f.length:a;if(f.copy(c,c.length-a,0,g),0===(a-=g)){g===f.length?(++e,d.next?b.head=d.next:b.head=b.tail=null):(b.head=d,d.data=f.slice(g));break}++e}return b.length-=e,c}function z(a){var b=a._readableState;if(b.length>0)throw new Error('"endReadable()" called on non-empty stream');b.endEmitted||(b.ended=!0,E(A,b,a))}function A(a,b){a.endEmitted||0!==a.length||(a.endEmitted=!0,b.readable=!1,b.emit("end"))}function B(a,b){for(var c=0,d=a.length;c<d;c++)b(a[c],c)}function C(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1}b.exports=f;var D,E=a("process-nextick-args"),F=a("isarray");f.ReadableState=e;var G,H=(a("events").EventEmitter,function(a,b){return a.listeners(b).length});!function(){try{G=a("stream")}catch(a){}finally{G||(G=a("events").EventEmitter)}}();var I=a("buffer").Buffer,J=a("buffer-shims"),K=a("core-util-is");K.inherits=a("inherits");var L=a("util"),M=void 0;M=L&&L.debuglog?L.debuglog("stream"):function(){};var N,O=a("./internal/streams/BufferList");K.inherits(f,G),f.prototype.push=function(a,b){var c=this._readableState;return c.objectMode||"string"!=typeof a||(b=b||c.defaultEncoding)!==c.encoding&&(a=J.from(a,b),b=""),g(this,c,a,b,!1)},f.prototype.unshift=function(a){return g(this,this._readableState,a,"",!0)},f.prototype.isPaused=function(){return this._readableState.flowing===!1},f.prototype.setEncoding=function(b){return N||(N=a("string_decoder/").StringDecoder),this._readableState.decoder=new N(b),this._readableState.encoding=b,this};var P=8388608;f.prototype.read=function(a){M("read",a),a=parseInt(a,10);var b=this._readableState,c=a;if(0!==a&&(b.emittedReadable=!1),0===a&&b.needReadable&&(b.length>=b.highWaterMark||b.ended))return M("read: emitReadable",b.length,b.ended),0===b.length&&b.ended?z(this):m(this),null;if(0===(a=j(a,b))&&b.ended)return 0===b.length&&z(this),null;var d=b.needReadable;M("need readable",d),(0===b.length||b.length-a<b.highWaterMark)&&(d=!0,M("length less than watermark",d)),b.ended||b.reading?(d=!1,M("reading or ended",d)):d&&(M("do read"),b.reading=!0,b.sync=!0,0===b.length&&(b.needReadable=!0),this._read(b.highWaterMark),b.sync=!1,b.reading||(a=j(c,b)));var e;return e=a>0?v(a,b):null,null===e?(b.needReadable=!0,a=0):b.length-=a,0===b.length&&(b.ended||(b.needReadable=!0),c!==a&&b.ended&&z(this)),null!==e&&this.emit("data",e),e},f.prototype._read=function(a){this.emit("error",new Error("_read() is not implemented"))},f.prototype.pipe=function(a,b){function e(a){M("onunpipe"),a===m&&g()}function f(){M("onend"),a.end()}function g(){M("cleanup"),a.removeListener("close",j),a.removeListener("finish",k),a.removeListener("drain",r),a.removeListener("error",i),a.removeListener("unpipe",e),m.removeListener("end",f),m.removeListener("end",g),m.removeListener("data",h),s=!0,!n.awaitDrain||a._writableState&&!a._writableState.needDrain||r()}function h(b){M("ondata"),t=!1,!1!==a.write(b)||t||((1===n.pipesCount&&n.pipes===a||n.pipesCount>1&&C(n.pipes,a)!==-1)&&!s&&(M("false write response, pause",m._readableState.awaitDrain),m._readableState.awaitDrain++,t=!0),m.pause())}function i(b){M("onerror",b),l(),a.removeListener("error",i),0===H(a,"error")&&a.emit("error",b)}function j(){a.removeListener("finish",k),l()}function k(){M("onfinish"),a.removeListener("close",j),l()}function l(){M("unpipe"),m.unpipe(a)}var m=this,n=this._readableState;switch(n.pipesCount){case 0:n.pipes=a;break;case 1:
+n.pipes=[n.pipes,a];break;default:n.pipes.push(a)}n.pipesCount+=1,M("pipe count=%d opts=%j",n.pipesCount,b);var o=(!b||b.end!==!1)&&a!==c.stdout&&a!==c.stderr,p=o?f:g;n.endEmitted?E(p):m.once("end",p),a.on("unpipe",e);var r=q(m);a.on("drain",r);var s=!1,t=!1;return m.on("data",h),d(a,"error",i),a.once("close",j),a.once("finish",k),a.emit("pipe",m),n.flowing||(M("pipe resume"),m.resume()),a},f.prototype.unpipe=function(a){var b=this._readableState;if(0===b.pipesCount)return this;if(1===b.pipesCount)return a&&a!==b.pipes?this:(a||(a=b.pipes),b.pipes=null,b.pipesCount=0,b.flowing=!1,a&&a.emit("unpipe",this),this);if(!a){var c=b.pipes,d=b.pipesCount;b.pipes=null,b.pipesCount=0,b.flowing=!1;for(var e=0;e<d;e++)c[e].emit("unpipe",this);return this}var f=C(b.pipes,a);return f===-1?this:(b.pipes.splice(f,1),b.pipesCount-=1,1===b.pipesCount&&(b.pipes=b.pipes[0]),a.emit("unpipe",this),this)},f.prototype.on=function(a,b){var c=G.prototype.on.call(this,a,b);if("data"===a)this._readableState.flowing!==!1&&this.resume();else if("readable"===a){var d=this._readableState;d.endEmitted||d.readableListening||(d.readableListening=d.needReadable=!0,d.emittedReadable=!1,d.reading?d.length&&m(this):E(r,this))}return c},f.prototype.addListener=f.prototype.on,f.prototype.resume=function(){var a=this._readableState;return a.flowing||(M("resume"),a.flowing=!0,s(this,a)),this},f.prototype.pause=function(){return M("call pause flowing=%j",this._readableState.flowing),!1!==this._readableState.flowing&&(M("pause"),this._readableState.flowing=!1,this.emit("pause")),this},f.prototype.wrap=function(a){var b=this._readableState,c=!1,d=this;a.on("end",function(){if(M("wrapped end"),b.decoder&&!b.ended){var a=b.decoder.end();a&&a.length&&d.push(a)}d.push(null)}),a.on("data",function(e){if(M("wrapped data"),b.decoder&&(e=b.decoder.write(e)),(!b.objectMode||null!==e&&void 0!==e)&&(b.objectMode||e&&e.length)){d.push(e)||(c=!0,a.pause())}});for(var e in a)void 0===this[e]&&"function"==typeof a[e]&&(this[e]=function(b){return function(){return a[b].apply(a,arguments)}}(e));return B(["error","close","destroy","pause","resume"],function(b){a.on(b,d.emit.bind(d,b))}),d._read=function(b){M("wrapped _read",b),c&&(c=!1,a.resume())},d},f._fromList=v}).call(this,a("_process"))},{"./_stream_duplex":116,"./internal/streams/BufferList":121,_process:111,buffer:5,"buffer-shims":4,"core-util-is":99,events:100,inherits:104,isarray:106,"process-nextick-args":110,"string_decoder/":155,util:2}],119:[function(a,b,c){"use strict";function d(a){this.afterTransform=function(b,c){return e(a,b,c)},this.needTransform=!1,this.transforming=!1,this.writecb=null,this.writechunk=null,this.writeencoding=null}function e(a,b,c){var d=a._transformState;d.transforming=!1;var e=d.writecb;if(!e)return a.emit("error",new Error("no writecb in Transform class"));d.writechunk=null,d.writecb=null,null!==c&&void 0!==c&&a.push(c),e(b);var f=a._readableState;f.reading=!1,(f.needReadable||f.length<f.highWaterMark)&&a._read(f.highWaterMark)}function f(a){if(!(this instanceof f))return new f(a);h.call(this,a),this._transformState=new d(this);var b=this;this._readableState.needReadable=!0,this._readableState.sync=!1,a&&("function"==typeof a.transform&&(this._transform=a.transform),"function"==typeof a.flush&&(this._flush=a.flush)),this.once("prefinish",function(){"function"==typeof this._flush?this._flush(function(a,c){g(b,a,c)}):g(b)})}function g(a,b,c){if(b)return a.emit("error",b);null!==c&&void 0!==c&&a.push(c);var d=a._writableState,e=a._transformState;if(d.length)throw new Error("Calling transform done when ws.length != 0");if(e.transforming)throw new Error("Calling transform done when still transforming");return a.push(null)}b.exports=f;var h=a("./_stream_duplex"),i=a("core-util-is");i.inherits=a("inherits"),i.inherits(f,h),f.prototype.push=function(a,b){return this._transformState.needTransform=!1,h.prototype.push.call(this,a,b)},f.prototype._transform=function(a,b,c){throw new Error("_transform() is not implemented")},f.prototype._write=function(a,b,c){var d=this._transformState;if(d.writecb=c,d.writechunk=a,d.writeencoding=b,!d.transforming){var e=this._readableState;(d.needTransform||e.needReadable||e.length<e.highWaterMark)&&this._read(e.highWaterMark)}},f.prototype._read=function(a){var b=this._transformState;null!==b.writechunk&&b.writecb&&!b.transforming?(b.transforming=!0,this._transform(b.writechunk,b.writeencoding,b.afterTransform)):b.needTransform=!0}},{"./_stream_duplex":116,"core-util-is":99,inherits:104}],120:[function(a,b,c){(function(c){"use strict";function d(){}function e(a,b,c){this.chunk=a,this.encoding=b,this.callback=c,this.next=null}function f(b,c){x=x||a("./_stream_duplex"),b=b||{},this.objectMode=!!b.objectMode,c instanceof x&&(this.objectMode=this.objectMode||!!b.writableObjectMode);var d=b.highWaterMark,e=this.objectMode?16:16384;this.highWaterMark=d||0===d?d:e,this.highWaterMark=~~this.highWaterMark,this.needDrain=!1,this.ending=!1,this.ended=!1,this.finished=!1;var f=b.decodeStrings===!1;this.decodeStrings=!f,this.defaultEncoding=b.defaultEncoding||"utf8",this.length=0,this.writing=!1,this.corked=0,this.sync=!0,this.bufferProcessing=!1,this.onwrite=function(a){o(c,a)},this.writecb=null,this.writelen=0,this.bufferedRequest=null,this.lastBufferedRequest=null,this.pendingcb=0,this.prefinished=!1,this.errorEmitted=!1,this.bufferedRequestCount=0,this.corkedRequestsFree=new w(this)}function g(b){if(x=x||a("./_stream_duplex"),!(F.call(g,this)||this instanceof x))return new g(b);this._writableState=new f(b,this),this.writable=!0,b&&("function"==typeof b.write&&(this._write=b.write),"function"==typeof b.writev&&(this._writev=b.writev)),B.call(this)}function h(a,b){var c=new Error("write after end");a.emit("error",c),y(b,c)}function i(a,b,c,d){var e=!0,f=!1;return null===c?f=new TypeError("May not write null values to stream"):D.isBuffer(c)||"string"==typeof c||void 0===c||b.objectMode||(f=new TypeError("Invalid non-string/buffer chunk")),f&&(a.emit("error",f),y(d,f),e=!1),e}function j(a,b,c){return a.objectMode||a.decodeStrings===!1||"string"!=typeof b||(b=E.from(b,c)),b}function k(a,b,c,d,f){c=j(b,c,d),D.isBuffer(c)&&(d="buffer");var g=b.objectMode?1:c.length;b.length+=g;var h=b.length<b.highWaterMark;if(h||(b.needDrain=!0),b.writing||b.corked){var i=b.lastBufferedRequest;b.lastBufferedRequest=new e(c,d,f),i?i.next=b.lastBufferedRequest:b.bufferedRequest=b.lastBufferedRequest,b.bufferedRequestCount+=1}else l(a,b,!1,g,c,d,f);return h}function l(a,b,c,d,e,f,g){b.writelen=d,b.writecb=g,b.writing=!0,b.sync=!0,c?a._writev(e,b.onwrite):a._write(e,f,b.onwrite),b.sync=!1}function m(a,b,c,d,e){--b.pendingcb,c?y(e,d):e(d),a._writableState.errorEmitted=!0,a.emit("error",d)}function n(a){a.writing=!1,a.writecb=null,a.length-=a.writelen,a.writelen=0}function o(a,b){var c=a._writableState,d=c.sync,e=c.writecb;if(n(c),b)m(a,c,d,b,e);else{var f=s(c);f||c.corked||c.bufferProcessing||!c.bufferedRequest||r(a,c),d?z(p,a,c,f,e):p(a,c,f,e)}}function p(a,b,c,d){c||q(a,b),b.pendingcb--,d(),u(a,b)}function q(a,b){0===b.length&&b.needDrain&&(b.needDrain=!1,a.emit("drain"))}function r(a,b){b.bufferProcessing=!0;var c=b.bufferedRequest;if(a._writev&&c&&c.next){var d=b.bufferedRequestCount,e=new Array(d),f=b.corkedRequestsFree;f.entry=c;for(var g=0;c;)e[g]=c,c=c.next,g+=1;l(a,b,!0,b.length,e,"",f.finish),b.pendingcb++,b.lastBufferedRequest=null,f.next?(b.corkedRequestsFree=f.next,f.next=null):b.corkedRequestsFree=new w(b)}else{for(;c;){var h=c.chunk,i=c.encoding,j=c.callback;if(l(a,b,!1,b.objectMode?1:h.length,h,i,j),c=c.next,b.writing)break}null===c&&(b.lastBufferedRequest=null)}b.bufferedRequestCount=0,b.bufferedRequest=c,b.bufferProcessing=!1}function s(a){return a.ending&&0===a.length&&null===a.bufferedRequest&&!a.finished&&!a.writing}function t(a,b){b.prefinished||(b.prefinished=!0,a.emit("prefinish"))}function u(a,b){var c=s(b);return c&&(0===b.pendingcb?(t(a,b),b.finished=!0,a.emit("finish")):t(a,b)),c}function v(a,b,c){b.ending=!0,u(a,b),c&&(b.finished?y(c):a.once("finish",c)),b.ended=!0,a.writable=!1}function w(a){var b=this;this.next=null,this.entry=null,this.finish=function(c){var d=b.entry;for(b.entry=null;d;){var e=d.callback;a.pendingcb--,e(c),d=d.next}a.corkedRequestsFree?a.corkedRequestsFree.next=b:a.corkedRequestsFree=b}}b.exports=g;var x,y=a("process-nextick-args"),z=!c.browser&&["v0.10","v0.9."].indexOf(c.version.slice(0,5))>-1?setImmediate:y;g.WritableState=f;var A=a("core-util-is");A.inherits=a("inherits");var B,C={deprecate:a("util-deprecate")};!function(){try{B=a("stream")}catch(a){}finally{B||(B=a("events").EventEmitter)}}();var D=a("buffer").Buffer,E=a("buffer-shims");A.inherits(g,B),f.prototype.getBuffer=function(){for(var a=this.bufferedRequest,b=[];a;)b.push(a),a=a.next;return b},function(){try{Object.defineProperty(f.prototype,"buffer",{get:C.deprecate(function(){return this.getBuffer()},"_writableState.buffer is deprecated. Use _writableState.getBuffer instead.")})}catch(a){}}();var F;"function"==typeof Symbol&&Symbol.hasInstance&&"function"==typeof Function.prototype[Symbol.hasInstance]?(F=Function.prototype[Symbol.hasInstance],Object.defineProperty(g,Symbol.hasInstance,{value:function(a){return!!F.call(this,a)||a&&a._writableState instanceof f}})):F=function(a){return a instanceof this},g.prototype.pipe=function(){this.emit("error",new Error("Cannot pipe, not readable"))},g.prototype.write=function(a,b,c){var e=this._writableState,f=!1;return"function"==typeof b&&(c=b,b=null),D.isBuffer(a)?b="buffer":b||(b=e.defaultEncoding),"function"!=typeof c&&(c=d),e.ended?h(this,c):i(this,e,a,c)&&(e.pendingcb++,f=k(this,e,a,b,c)),f},g.prototype.cork=function(){this._writableState.corked++},g.prototype.uncork=function(){var a=this._writableState;a.corked&&(a.corked--,a.writing||a.corked||a.finished||a.bufferProcessing||!a.bufferedRequest||r(this,a))},g.prototype.setDefaultEncoding=function(a){if("string"==typeof a&&(a=a.toLowerCase()),!(["hex","utf8","utf-8","ascii","binary","base64","ucs2","ucs-2","utf16le","utf-16le","raw"].indexOf((a+"").toLowerCase())>-1))throw new TypeError("Unknown encoding: "+a);return this._writableState.defaultEncoding=a,this},g.prototype._write=function(a,b,c){c(new Error("_write() is not implemented"))},g.prototype._writev=null,g.prototype.end=function(a,b,c){var d=this._writableState;"function"==typeof a?(c=a,a=null,b=null):"function"==typeof b&&(c=b,b=null),null!==a&&void 0!==a&&this.write(a,b),d.corked&&(d.corked=1,this.uncork()),d.ending||d.finished||v(this,d,c)}}).call(this,a("_process"))},{"./_stream_duplex":116,_process:111,buffer:5,"buffer-shims":4,"core-util-is":99,events:100,inherits:104,"process-nextick-args":110,"util-deprecate":160}],121:[function(a,b,c){"use strict";function d(){this.head=null,this.tail=null,this.length=0}var e=(a("buffer").Buffer,a("buffer-shims"));b.exports=d,d.prototype.push=function(a){var b={data:a,next:null};this.length>0?this.tail.next=b:this.head=b,this.tail=b,++this.length},d.prototype.unshift=function(a){var b={data:a,next:this.head};0===this.length&&(this.tail=b),this.head=b,++this.length},d.prototype.shift=function(){if(0!==this.length){var a=this.head.data;return 1===this.length?this.head=this.tail=null:this.head=this.head.next,--this.length,a}},d.prototype.clear=function(){this.head=this.tail=null,this.length=0},d.prototype.join=function(a){if(0===this.length)return"";for(var b=this.head,c=""+b.data;b=b.next;)c+=a+b.data;return c},d.prototype.concat=function(a){if(0===this.length)return e.alloc(0);if(1===this.length)return this.head.data;for(var b=e.allocUnsafe(a>>>0),c=this.head,d=0;c;)c.data.copy(b,d),d+=c.data.length,c=c.next;return b}},{buffer:5,"buffer-shims":4}],122:[function(a,b,c){(function(d){var e=function(){try{return a("stream")}catch(a){}}();c=b.exports=a("./lib/_stream_readable.js"),c.Stream=e||c,c.Readable=c,c.Writable=a("./lib/_stream_writable.js"),c.Duplex=a("./lib/_stream_duplex.js"),c.Transform=a("./lib/_stream_transform.js"),c.PassThrough=a("./lib/_stream_passthrough.js"),!d.browser&&"disable"===d.env.READABLE_STREAM&&e&&(b.exports=e)}).call(this,a("_process"))},{"./lib/_stream_duplex.js":116,"./lib/_stream_passthrough.js":117,"./lib/_stream_readable.js":118,"./lib/_stream_transform.js":119,"./lib/_stream_writable.js":120,_process:111}],123:[function(a,b,c){"use strict";b.exports={ABSOLUTE:"absolute",PATH_RELATIVE:"pathRelative",ROOT_RELATIVE:"rootRelative",SHORTEST:"shortest"}},{}],124:[function(a,b,c){"use strict";function d(a,b){return!a.auth||b.removeAuth||!a.extra.relation.maximumHost&&b.output!==p.ABSOLUTE?"":a.auth+"@"}function e(a,b){return a.hash?a.hash:""}function f(a,b){return a.host.full&&(a.extra.relation.maximumAuth||b.output===p.ABSOLUTE)?a.host.full:""}function g(a,b){var c="",d=a.path.absolute.string,e=a.path.relative.string,f=o(a,b);if(a.extra.relation.maximumHost||b.output===p.ABSOLUTE||b.output===p.ROOT_RELATIVE)c=d;else if(e.length<=d.length&&b.output===p.SHORTEST||b.output===p.PATH_RELATIVE){if(""===(c=e)){var g=n(a,b)&&!!m(a,b);a.extra.relation.maximumPath&&!f?c="./":!a.extra.relation.overridesQuery||f||g||(c="./")}}else c=d;return"/"!==c||f||!b.removeRootTrailingSlash||a.extra.relation.minimumPort&&b.output!==p.ABSOLUTE||(c=""),c}function h(a,b){return a.port&&!a.extra.portIsDefault&&a.extra.relation.maximumHost?":"+a.port:""}function i(a,b){return n(a,b)?m(a,b):""}function j(a,b){return o(a,b)?a.resource:""}function k(a,b){var c="";return(a.extra.relation.maximumHost||b.output===p.ABSOLUTE)&&(c+=a.extra.relation.minimumScheme&&b.schemeRelative&&b.output!==p.ABSOLUTE?"//":a.scheme+"://"),c}function l(a,b){var c="";return c+=k(a,b),c+=d(a,b),c+=f(a,b),c+=h(a,b),c+=g(a,b),c+=j(a,b),c+=i(a,b),c+=e(a,b)}function m(a,b){var c=b.removeEmptyQueries&&a.extra.relation.minimumPort;return a.query.string[c?"stripped":"full"]}function n(a,b){return!a.extra.relation.minimumQuery||b.output===p.ABSOLUTE||b.output===p.ROOT_RELATIVE}function o(a,b){var c=b.removeDirectoryIndexes&&a.extra.resourceIsIndex,d=a.extra.relation.minimumResource&&b.output!==p.ABSOLUTE&&b.output!==p.ROOT_RELATIVE;return!!a.resource&&!d&&!c}var p=a("./constants");b.exports=l},{"./constants":123}],125:[function(a,b,c){"use strict";function d(a,b){this.options=g(b,{defaultPorts:{ftp:21,http:80,https:443},directoryIndexes:["index.html"],ignore_www:!1,output:d.SHORTEST,rejectedSchemes:["data","javascript","mailto"],removeAuth:!1,removeDirectoryIndexes:!0,removeEmptyQueries:!1,removeRootTrailingSlash:!0,schemeRelative:!0,site:void 0,slashesDenoteHost:!0}),this.from=i.from(a,this.options,null)}var e=a("./constants"),f=a("./format"),g=a("./options"),h=a("./util/object"),i=a("./parse"),j=a("./relate");d.prototype.relate=function(a,b,c){if(h.isPlainObject(b)?(c=b,b=a,a=null):b||(b=a,a=null),c=g(c,this.options),a=a||c.site,!(a=i.from(a,c,this.from))||!a.href)throw new Error("from value not defined.");if(a.extra.hrefInfo.minimumPathOnly)throw new Error("from value supplied is not absolute: "+a.href);return b=i.to(b,c),b.valid===!1?b.href:(b=j(a,b,c),b=f(b,c))},d.relate=function(a,b,c){return(new d).relate(a,b,c)},h.shallowMerge(d,e),b.exports=d},{"./constants":123,"./format":124,"./options":126,"./parse":129,"./relate":136,"./util/object":138}],126:[function(a,b,c){"use strict";function d(a,b){if(f.isPlainObject(a)){var c={};for(var d in b)b.hasOwnProperty(d)&&(void 0!==a[d]?c[d]=e(a[d],b[d]):c[d]=b[d]);return c}return b}function e(a,b){return b instanceof Object&&a instanceof Object?b instanceof Array&&a instanceof Array?b.concat(a):f.shallowMerge(a,b):a}var f=a("./util/object");b.exports=d},{"./util/object":138}],127:[function(a,b,c){"use strict";function d(a,b){if(b.ignore_www){var c=a.host.full;if(c){var d=c;0===c.indexOf("www.")&&(d=c.substr(4)),a.host.stripped=d}}}b.exports=d},{}],128:[function(a,b,c){"use strict";function d(a){var b=!(a.scheme||a.auth||a.host.full||a.port),c=b&&!a.path.absolute.string,d=c&&!a.resource,e=d&&!a.query.string.full.length,f=e&&!a.hash;a.extra.hrefInfo.minimumPathOnly=b,a.extra.hrefInfo.minimumResourceOnly=c,a.extra.hrefInfo.minimumQueryOnly=d,a.extra.hrefInfo.minimumHashOnly=e,a.extra.hrefInfo.empty=f}b.exports=d},{}],129:[function(a,b,c){"use strict";function d(a,b,c){if(a){var d=e(a,b),f=l.resolveDotSegments(d.path.absolute.array);return d.path.absolute.array=f,d.path.absolute.string="/"+l.join(f),d}return c}function e(a,b){var c=k(a,b);return c.valid===!1?c:(g(c,b),i(c,b),h(c,b),j(c,b),f(c),c)}var f=a("./hrefInfo"),g=a("./host"),h=a("./path"),i=a("./port"),j=a("./query"),k=a("./urlstring"),l=a("../util/path");b.exports={from:d,to:e}},{"../util/path":139,"./host":127,"./hrefInfo":128,"./path":130,"./port":131,"./query":132,"./urlstring":133}],130:[function(a,b,c){"use strict";function d(a,b){var c=!1;return b.directoryIndexes.every(function(b){return b!==a||(c=!0,!1)}),c}function e(a,b){var c=a.path.absolute.string;if(c){var e=c.lastIndexOf("/");if(e>-1){if(++e<c.length){var g=c.substr(e);"."!==g&&".."!==g?(a.resource=g,c=c.substr(0,e)):c+="/"}a.path.absolute.string=c,a.path.absolute.array=f(c)}else"."===c||".."===c?(c+="/",a.path.absolute.string=c,a.path.absolute.array=f(c)):(a.resource=c,a.path.absolute.string=null);a.extra.resourceIsIndex=d(a.resource,b)}}function f(a){if("/"!==a){var b=[];return a.split("/").forEach(function(a){""!==a&&b.push(a)}),b}return[]}b.exports=e},{}],131:[function(a,b,c){"use strict";function d(a,b){var c=-1;for(var d in b.defaultPorts)if(d===a.scheme&&b.defaultPorts.hasOwnProperty(d)){c=b.defaultPorts[d];break}c>-1&&(c=c.toString(),null===a.port&&(a.port=c),a.extra.portIsDefault=a.port===c)}b.exports=d},{}],132:[function(a,b,c){"use strict";function d(a,b){a.query.string.full=e(a.query.object,!1),b.removeEmptyQueries&&(a.query.string.stripped=e(a.query.object,!0))}function e(a,b){var c=0,d="";for(var e in a)if(""!==e&&f.call(a,e)===!0){var g=a[e];""===g&&b||(d+=1==++c?"?":"&",e=encodeURIComponent(e),d+=""!==g?e+"="+encodeURIComponent(g).replace(/%20/g,"+"):e)}return d}var f=Object.prototype.hasOwnProperty;b.exports=d},{}],133:[function(a,b,c){"use strict";function d(a){var b=a.protocol;return b&&b.indexOf(":")===b.length-1&&(b=b.substr(0,b.length-1)),a.host={full:a.hostname,stripped:null},a.path={absolute:{array:null,string:a.pathname},relative:{array:null,string:null}},a.query={object:a.query,string:{full:null,stripped:null}},a.extra={hrefInfo:{minimumPathOnly:null,minimumResourceOnly:null,minimumQueryOnly:null,minimumHashOnly:null,empty:null,separatorOnlyQuery:"?"===a.search},portIsDefault:null,relation:{maximumScheme:null,maximumAuth:null,maximumHost:null,maximumPort:null,maximumPath:null,maximumResource:null,maximumQuery:null,maximumHash:null,minimumScheme:null,minimumAuth:null,minimumHost:null,minimumPort:null,minimumPath:null,minimumResource:null,minimumQuery:null,minimumHash:null,overridesQuery:null},resourceIsIndex:null,slashes:a.slashes},a.resource=null,a.scheme=b,delete a.hostname,delete a.pathname,delete a.protocol,delete a.search,delete a.slashes,a}function e(a,b){var c=!0;return b.rejectedSchemes.every(function(b){return c=!(0===a.indexOf(b+":"))}),c}function f(a,b){return e(a,b)?d(g(a,!0,b.slashesDenoteHost)):{href:a,valid:!1}}var g=a("url").parse;b.exports=f},{url:158}],134:[function(a,b,c){"use strict";function d(a,b,c){h.upToPath(a,b,c),a.extra.relation.minimumScheme&&(a.scheme=b.scheme),a.extra.relation.minimumAuth&&(a.auth=b.auth),a.extra.relation.minimumHost&&(a.host=i.clone(b.host)),a.extra.relation.minimumPort&&f(a,b),a.extra.relation.minimumScheme&&e(a,b),h.pathOn(a,b,c),a.extra.relation.minimumResource&&g(a,b),a.extra.relation.minimumQuery&&(a.query=i.clone(b.query)),a.extra.relation.minimumHash&&(a.hash=b.hash)}function e(a,b){if(a.extra.relation.maximumHost||!a.extra.hrefInfo.minimumResourceOnly){var c=a.path.absolute.array,d="/";c?(a.extra.hrefInfo.minimumPathOnly&&0!==a.path.absolute.string.indexOf("/")&&(c=b.path.absolute.array.concat(c)),c=j.resolveDotSegments(c),d+=j.join(c)):c=[],a.path.absolute.array=c,a.path.absolute.string=d}else a.path=i.clone(b.path)}function f(a,b){a.port=b.port,a.extra.portIsDefault=b.extra.portIsDefault}function g(a,b){a.resource=b.resource,a.extra.resourceIsIndex=b.extra.resourceIsIndex}var h=a("./findRelation"),i=a("../util/object"),j=a("../util/path");b.exports=d},{"../util/object":138,"../util/path":139,"./findRelation":135}],135:[function(a,b,c){"use strict";function d(a,b,c){var d=a.extra.hrefInfo.minimumPathOnly,e=a.scheme===b.scheme||!a.scheme,f=e&&(a.auth===b.auth||c.removeAuth||d),g=c.ignore_www?"stripped":"full",h=f&&(a.host[g]===b.host[g]||d),i=h&&(a.port===b.port||d);a.extra.relation.minimumScheme=e,a.extra.relation.minimumAuth=f,a.extra.relation.minimumHost=h,a.extra.relation.minimumPort=i,a.extra.relation.maximumScheme=!e||e&&!f,a.extra.relation.maximumAuth=!e||e&&!h,a.extra.relation.maximumHost=!e||e&&!i}function e(a,b,c){var d=a.extra.hrefInfo.minimumQueryOnly,e=a.extra.hrefInfo.minimumHashOnly,f=a.extra.hrefInfo.empty,g=a.extra.relation.minimumPort,h=a.extra.relation.minimumScheme,i=g&&a.path.absolute.string===b.path.absolute.string,j=a.resource===b.resource||!a.resource&&b.extra.resourceIsIndex||c.removeDirectoryIndexes&&a.extra.resourceIsIndex&&!b.resource,k=i&&(j||d||e||f),l=c.removeEmptyQueries?"stripped":"full",m=a.query.string[l],n=b.query.string[l],o=k&&!!m&&m===n||(e||f)&&!a.extra.hrefInfo.separatorOnlyQuery,p=o&&a.hash===b.hash;a.extra.relation.minimumPath=i,a.extra.relation.minimumResource=k,a.extra.relation.minimumQuery=o,a.extra.relation.minimumHash=p,a.extra.relation.maximumPort=!h||h&&!i,a.extra.relation.maximumPath=!h||h&&!k,a.extra.relation.maximumResource=!h||h&&!o,a.extra.relation.maximumQuery=!h||h&&!p,a.extra.relation.maximumHash=!h||h&&!p,a.extra.relation.overridesQuery=i&&a.extra.relation.maximumResource&&!o&&!!n}b.exports={pathOn:e,upToPath:d}},{}],136:[function(a,b,c){"use strict";function d(a,b,c){return e(b,a,c),f(b,a,c),b}var e=a("./absolutize"),f=a("./relativize");b.exports=d},{"./absolutize":134,"./relativize":137}],137:[function(a,b,c){"use strict";function d(a,b){var c=[],d=!0,e=-1;return b.forEach(function(b,f){d&&(a[f]!==b?d=!1:e=f),d||c.push("..")}),a.forEach(function(a,b){b>e&&c.push(a)}),c}function e(a,b,c){if(a.extra.relation.minimumScheme){var e=d(a.path.absolute.array,b.path.absolute.array);a.path.relative.array=e,a.path.relative.string=f.join(e)}}var f=a("../util/path");b.exports=e},{"../util/path":139}],138:[function(a,b,c){"use strict";function d(a){if(a instanceof Object){var b=a instanceof Array?[]:{};for(var c in a)a.hasOwnProperty(c)&&(b[c]=d(a[c]));return b}return a}function e(a){return!!a&&"object"==typeof a&&a.constructor===Object}function f(a,b){if(a instanceof Object&&b instanceof Object)for(var c in b)b.hasOwnProperty(c)&&(a[c]=b[c]);return a}b.exports={clone:d,isPlainObject:e,shallowMerge:f}},{}],139:[function(a,b,c){"use strict";function d(a){return a.length>0?a.join("/")+"/":""}function e(a){var b=[];return a.forEach(function(a){".."!==a?"."!==a&&b.push(a):b.length>0&&b.splice(b.length-1,1)}),b}b.exports={join:d,resolveDotSegments:e}},{}],140:[function(a,b,c){function d(){this._array=[],this._set=Object.create(null)}var e=a("./util"),f=Object.prototype.hasOwnProperty;d.fromArray=function(a,b){for(var c=new d,e=0,f=a.length;e<f;e++)c.add(a[e],b);return c},d.prototype.size=function(){return Object.getOwnPropertyNames(this._set).length},d.prototype.add=function(a,b){var c=e.toSetString(a),d=f.call(this._set,c),g=this._array.length;d&&!b||this._array.push(a),d||(this._set[c]=g)},d.prototype.has=function(a){var b=e.toSetString(a);return f.call(this._set,b)},d.prototype.indexOf=function(a){var b=e.toSetString(a);if(f.call(this._set,b))return this._set[b];throw new Error('"'+a+'" is not in the set.')},d.prototype.at=function(a){if(a>=0&&a<this._array.length)return this._array[a];throw new Error("No element indexed by "+a)},d.prototype.toArray=function(){return this._array.slice()},c.ArraySet=d},{"./util":149}],141:[function(a,b,c){function d(a){return a<0?1+(-a<<1):0+(a<<1)}function e(a){var b=1==(1&a),c=a>>1;return b?-c:c}var f=a("./base64");c.encode=function(a){var b,c="",e=d(a);do{b=31&e,e>>>=5,e>0&&(b|=32),c+=f.encode(b)}while(e>0);return c},c.decode=function(a,b,c){var d,g,h=a.length,i=0,j=0;do{if(b>=h)throw new Error("Expected more digits in base 64 VLQ value.");if((g=f.decode(a.charCodeAt(b++)))===-1)throw new Error("Invalid base64 digit: "+a.charAt(b-1));d=!!(32&g),g&=31,i+=g<<j,j+=5}while(d);c.value=e(i),c.rest=b}},{"./base64":142}],142:[function(a,b,c){var d="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");c.encode=function(a){if(0<=a&&a<d.length)return d[a];throw new TypeError("Must be between 0 and 63: "+a)},c.decode=function(a){return 65<=a&&a<=90?a-65:97<=a&&a<=122?a-97+26:48<=a&&a<=57?a-48+52:43==a?62:47==a?63:-1}},{}],143:[function(a,b,c){function d(a,b,e,f,g,h){var i=Math.floor((b-a)/2)+a,j=g(e,f[i],!0);return 0===j?i:j>0?b-i>1?d(i,b,e,f,g,h):h==c.LEAST_UPPER_BOUND?b<f.length?b:-1:i:i-a>1?d(a,i,e,f,g,h):h==c.LEAST_UPPER_BOUND?i:a<0?-1:a}c.GREATEST_LOWER_BOUND=1,c.LEAST_UPPER_BOUND=2,c.search=function(a,b,e,f){if(0===b.length)return-1;var g=d(-1,b.length,a,b,e,f||c.GREATEST_LOWER_BOUND);if(g<0)return-1;for(;g-1>=0&&0===e(b[g],b[g-1],!0);)--g;return g}},{}],144:[function(a,b,c){function d(a,b){var c=a.generatedLine,d=b.generatedLine,e=a.generatedColumn,g=b.generatedColumn;return d>c||d==c&&g>=e||f.compareByGeneratedPositionsInflated(a,b)<=0}function e(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}var f=a("./util");e.prototype.unsortedForEach=function(a,b){this._array.forEach(a,b)},e.prototype.add=function(a){d(this._last,a)?(this._last=a,this._array.push(a)):(this._sorted=!1,this._array.push(a))},e.prototype.toArray=function(){return this._sorted||(this._array.sort(f.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},c.MappingList=e},{"./util":149}],145:[function(a,b,c){function d(a,b,c){var d=a[b];a[b]=a[c],a[c]=d}function e(a,b){return Math.round(a+Math.random()*(b-a))}function f(a,b,c,g){if(c<g){var h=e(c,g),i=c-1;d(a,h,g);for(var j=a[g],k=c;k<g;k++)b(a[k],j)<=0&&(i+=1,d(a,i,k));d(a,i+1,k);var l=i+1;f(a,b,c,l-1),f(a,b,l+1,g)}}c.quickSort=function(a,b){f(a,b,0,a.length-1)}},{}],146:[function(a,b,c){function d(a){var b=a;return"string"==typeof a&&(b=JSON.parse(a.replace(/^\)\]\}'/,""))),null!=b.sections?new g(b):new e(b)}function e(a){var b=a;"string"==typeof a&&(b=JSON.parse(a.replace(/^\)\]\}'/,"")));var c=h.getArg(b,"version"),d=h.getArg(b,"sources"),e=h.getArg(b,"names",[]),f=h.getArg(b,"sourceRoot",null),g=h.getArg(b,"sourcesContent",null),i=h.getArg(b,"mappings"),k=h.getArg(b,"file",null);if(c!=this._version)throw new Error("Unsupported version: "+c);d=d.map(String).map(h.normalize).map(function(a){return f&&h.isAbsolute(f)&&h.isAbsolute(a)?h.relative(f,a):a}),this._names=j.fromArray(e.map(String),!0),this._sources=j.fromArray(d,!0),this.sourceRoot=f,this.sourcesContent=g,this._mappings=i,this.file=k}function f(){this.generatedLine=0,this.generatedColumn=0,this.source=null,this.originalLine=null,this.originalColumn=null,this.name=null}function g(a){var b=a;"string"==typeof a&&(b=JSON.parse(a.replace(/^\)\]\}'/,"")));var c=h.getArg(b,"version"),e=h.getArg(b,"sections");if(c!=this._version)throw new Error("Unsupported version: "+c);this._sources=new j,this._names=new j;var f={line:-1,column:0};this._sections=e.map(function(a){if(a.url)throw new Error("Support for url field in sections not implemented.");var b=h.getArg(a,"offset"),c=h.getArg(b,"line"),e=h.getArg(b,"column");if(c<f.line||c===f.line&&e<f.column)throw new Error("Section offsets must be ordered and non-overlapping.");return f=b,{generatedOffset:{generatedLine:c+1,generatedColumn:e+1},consumer:new d(h.getArg(a,"map"))}})}var h=a("./util"),i=a("./binary-search"),j=a("./array-set").ArraySet,k=a("./base64-vlq"),l=a("./quick-sort").quickSort;d.fromSourceMap=function(a){return e.fromSourceMap(a)},d.prototype._version=3,d.prototype.__generatedMappings=null,Object.defineProperty(d.prototype,"_generatedMappings",{get:function(){return this.__generatedMappings||this._parseMappings(this._mappings,this.sourceRoot),this.__generatedMappings}}),d.prototype.__originalMappings=null,Object.defineProperty(d.prototype,"_originalMappings",{get:function(){return this.__originalMappings||this._parseMappings(this._mappings,this.sourceRoot),this.__originalMappings}}),d.prototype._charIsMappingSeparator=function(a,b){var c=a.charAt(b);return";"===c||","===c},d.prototype._parseMappings=function(a,b){throw new Error("Subclasses must implement _parseMappings")},d.GENERATED_ORDER=1,d.ORIGINAL_ORDER=2,d.GREATEST_LOWER_BOUND=1,d.LEAST_UPPER_BOUND=2,d.prototype.eachMapping=function(a,b,c){var e,f=b||null,g=c||d.GENERATED_ORDER;switch(g){case d.GENERATED_ORDER:e=this._generatedMappings;break;case d.ORIGINAL_ORDER:e=this._originalMappings;break;default:throw new Error("Unknown order of iteration.")}var i=this.sourceRoot;e.map(function(a){var b=null===a.source?null:this._sources.at(a.source);return null!=b&&null!=i&&(b=h.join(i,b)),{source:b,generatedLine:a.generatedLine,generatedColumn:a.generatedColumn,originalLine:a.originalLine,originalColumn:a.originalColumn,name:null===a.name?null:this._names.at(a.name)}},this).forEach(a,f)},d.prototype.allGeneratedPositionsFor=function(a){var b=h.getArg(a,"line"),c={source:h.getArg(a,"source"),originalLine:b,originalColumn:h.getArg(a,"column",0)};if(null!=this.sourceRoot&&(c.source=h.relative(this.sourceRoot,c.source)),!this._sources.has(c.source))return[];c.source=this._sources.indexOf(c.source);var d=[],e=this._findMapping(c,this._originalMappings,"originalLine","originalColumn",h.compareByOriginalPositions,i.LEAST_UPPER_BOUND);if(e>=0){var f=this._originalMappings[e];if(void 0===a.column)for(var g=f.originalLine;f&&f.originalLine===g;)d.push({line:h.getArg(f,"generatedLine",null),column:h.getArg(f,"generatedColumn",null),lastColumn:h.getArg(f,"lastGeneratedColumn",null)}),f=this._originalMappings[++e];else for(var j=f.originalColumn;f&&f.originalLine===b&&f.originalColumn==j;)d.push({line:h.getArg(f,"generatedLine",null),column:h.getArg(f,"generatedColumn",null),lastColumn:h.getArg(f,"lastGeneratedColumn",null)}),f=this._originalMappings[++e]}return d},c.SourceMapConsumer=d,e.prototype=Object.create(d.prototype),e.prototype.consumer=d,e.fromSourceMap=function(a){var b=Object.create(e.prototype),c=b._names=j.fromArray(a._names.toArray(),!0),d=b._sources=j.fromArray(a._sources.toArray(),!0);b.sourceRoot=a._sourceRoot,b.sourcesContent=a._generateSourcesContent(b._sources.toArray(),b.sourceRoot),b.file=a._file;for(var g=a._mappings.toArray().slice(),i=b.__generatedMappings=[],k=b.__originalMappings=[],m=0,n=g.length;m<n;m++){var o=g[m],p=new f;p.generatedLine=o.generatedLine,p.generatedColumn=o.generatedColumn,o.source&&(p.source=d.indexOf(o.source),p.originalLine=o.originalLine,p.originalColumn=o.originalColumn,o.name&&(p.name=c.indexOf(o.name)),k.push(p)),i.push(p)}return l(b.__originalMappings,h.compareByOriginalPositions),b},e.prototype._version=3,Object.defineProperty(e.prototype,"sources",{get:function(){return this._sources.toArray().map(function(a){return null!=this.sourceRoot?h.join(this.sourceRoot,a):a},this)}}),e.prototype._parseMappings=function(a,b){for(var c,d,e,g,i,j=1,m=0,n=0,o=0,p=0,q=0,r=a.length,s=0,t={},u={},v=[],w=[];s<r;)if(";"===a.charAt(s))j++,s++,m=0;else if(","===a.charAt(s))s++;else{for(c=new f,c.generatedLine=j,g=s;g<r&&!this._charIsMappingSeparator(a,g);g++);if(d=a.slice(s,g),e=t[d])s+=d.length;else{for(e=[];s<g;)k.decode(a,s,u),i=u.value,s=u.rest,e.push(i);if(2===e.length)throw new Error("Found a source, but no line and column");if(3===e.length)throw new Error("Found a source and line, but no column");t[d]=e}c.generatedColumn=m+e[0],m=c.generatedColumn,e.length>1&&(c.source=p+e[1],p+=e[1],c.originalLine=n+e[2],n=c.originalLine,c.originalLine+=1,c.originalColumn=o+e[3],o=c.originalColumn,
+e.length>4&&(c.name=q+e[4],q+=e[4])),w.push(c),"number"==typeof c.originalLine&&v.push(c)}l(w,h.compareByGeneratedPositionsDeflated),this.__generatedMappings=w,l(v,h.compareByOriginalPositions),this.__originalMappings=v},e.prototype._findMapping=function(a,b,c,d,e,f){if(a[c]<=0)throw new TypeError("Line must be greater than or equal to 1, got "+a[c]);if(a[d]<0)throw new TypeError("Column must be greater than or equal to 0, got "+a[d]);return i.search(a,b,e,f)},e.prototype.computeColumnSpans=function(){for(var a=0;a<this._generatedMappings.length;++a){var b=this._generatedMappings[a];if(a+1<this._generatedMappings.length){var c=this._generatedMappings[a+1];if(b.generatedLine===c.generatedLine){b.lastGeneratedColumn=c.generatedColumn-1;continue}}b.lastGeneratedColumn=1/0}},e.prototype.originalPositionFor=function(a){var b={generatedLine:h.getArg(a,"line"),generatedColumn:h.getArg(a,"column")},c=this._findMapping(b,this._generatedMappings,"generatedLine","generatedColumn",h.compareByGeneratedPositionsDeflated,h.getArg(a,"bias",d.GREATEST_LOWER_BOUND));if(c>=0){var e=this._generatedMappings[c];if(e.generatedLine===b.generatedLine){var f=h.getArg(e,"source",null);null!==f&&(f=this._sources.at(f),null!=this.sourceRoot&&(f=h.join(this.sourceRoot,f)));var g=h.getArg(e,"name",null);return null!==g&&(g=this._names.at(g)),{source:f,line:h.getArg(e,"originalLine",null),column:h.getArg(e,"originalColumn",null),name:g}}}return{source:null,line:null,column:null,name:null}},e.prototype.hasContentsOfAllSources=function(){return!!this.sourcesContent&&(this.sourcesContent.length>=this._sources.size()&&!this.sourcesContent.some(function(a){return null==a}))},e.prototype.sourceContentFor=function(a,b){if(!this.sourcesContent)return null;if(null!=this.sourceRoot&&(a=h.relative(this.sourceRoot,a)),this._sources.has(a))return this.sourcesContent[this._sources.indexOf(a)];var c;if(null!=this.sourceRoot&&(c=h.urlParse(this.sourceRoot))){var d=a.replace(/^file:\/\//,"");if("file"==c.scheme&&this._sources.has(d))return this.sourcesContent[this._sources.indexOf(d)];if((!c.path||"/"==c.path)&&this._sources.has("/"+a))return this.sourcesContent[this._sources.indexOf("/"+a)]}if(b)return null;throw new Error('"'+a+'" is not in the SourceMap.')},e.prototype.generatedPositionFor=function(a){var b=h.getArg(a,"source");if(null!=this.sourceRoot&&(b=h.relative(this.sourceRoot,b)),!this._sources.has(b))return{line:null,column:null,lastColumn:null};b=this._sources.indexOf(b);var c={source:b,originalLine:h.getArg(a,"line"),originalColumn:h.getArg(a,"column")},e=this._findMapping(c,this._originalMappings,"originalLine","originalColumn",h.compareByOriginalPositions,h.getArg(a,"bias",d.GREATEST_LOWER_BOUND));if(e>=0){var f=this._originalMappings[e];if(f.source===c.source)return{line:h.getArg(f,"generatedLine",null),column:h.getArg(f,"generatedColumn",null),lastColumn:h.getArg(f,"lastGeneratedColumn",null)}}return{line:null,column:null,lastColumn:null}},c.BasicSourceMapConsumer=e,g.prototype=Object.create(d.prototype),g.prototype.constructor=d,g.prototype._version=3,Object.defineProperty(g.prototype,"sources",{get:function(){for(var a=[],b=0;b<this._sections.length;b++)for(var c=0;c<this._sections[b].consumer.sources.length;c++)a.push(this._sections[b].consumer.sources[c]);return a}}),g.prototype.originalPositionFor=function(a){var b={generatedLine:h.getArg(a,"line"),generatedColumn:h.getArg(a,"column")},c=i.search(b,this._sections,function(a,b){var c=a.generatedLine-b.generatedOffset.generatedLine;return c?c:a.generatedColumn-b.generatedOffset.generatedColumn}),d=this._sections[c];return d?d.consumer.originalPositionFor({line:b.generatedLine-(d.generatedOffset.generatedLine-1),column:b.generatedColumn-(d.generatedOffset.generatedLine===b.generatedLine?d.generatedOffset.generatedColumn-1:0),bias:a.bias}):{source:null,line:null,column:null,name:null}},g.prototype.hasContentsOfAllSources=function(){return this._sections.every(function(a){return a.consumer.hasContentsOfAllSources()})},g.prototype.sourceContentFor=function(a,b){for(var c=0;c<this._sections.length;c++){var d=this._sections[c],e=d.consumer.sourceContentFor(a,!0);if(e)return e}if(b)return null;throw new Error('"'+a+'" is not in the SourceMap.')},g.prototype.generatedPositionFor=function(a){for(var b=0;b<this._sections.length;b++){var c=this._sections[b];if(c.consumer.sources.indexOf(h.getArg(a,"source"))!==-1){var d=c.consumer.generatedPositionFor(a);if(d){return{line:d.line+(c.generatedOffset.generatedLine-1),column:d.column+(c.generatedOffset.generatedLine===d.line?c.generatedOffset.generatedColumn-1:0)}}}}return{line:null,column:null}},g.prototype._parseMappings=function(a,b){this.__generatedMappings=[],this.__originalMappings=[];for(var c=0;c<this._sections.length;c++)for(var d=this._sections[c],e=d.consumer._generatedMappings,f=0;f<e.length;f++){var g=e[f],i=d.consumer._sources.at(g.source);null!==d.consumer.sourceRoot&&(i=h.join(d.consumer.sourceRoot,i)),this._sources.add(i),i=this._sources.indexOf(i);var j=d.consumer._names.at(g.name);this._names.add(j),j=this._names.indexOf(j);var k={source:i,generatedLine:g.generatedLine+(d.generatedOffset.generatedLine-1),generatedColumn:g.generatedColumn+(d.generatedOffset.generatedLine===g.generatedLine?d.generatedOffset.generatedColumn-1:0),originalLine:g.originalLine,originalColumn:g.originalColumn,name:j};this.__generatedMappings.push(k),"number"==typeof k.originalLine&&this.__originalMappings.push(k)}l(this.__generatedMappings,h.compareByGeneratedPositionsDeflated),l(this.__originalMappings,h.compareByOriginalPositions)},c.IndexedSourceMapConsumer=g},{"./array-set":140,"./base64-vlq":141,"./binary-search":143,"./quick-sort":145,"./util":149}],147:[function(a,b,c){function d(a){a||(a={}),this._file=f.getArg(a,"file",null),this._sourceRoot=f.getArg(a,"sourceRoot",null),this._skipValidation=f.getArg(a,"skipValidation",!1),this._sources=new g,this._names=new g,this._mappings=new h,this._sourcesContents=null}var e=a("./base64-vlq"),f=a("./util"),g=a("./array-set").ArraySet,h=a("./mapping-list").MappingList;d.prototype._version=3,d.fromSourceMap=function(a){var b=a.sourceRoot,c=new d({file:a.file,sourceRoot:b});return a.eachMapping(function(a){var d={generated:{line:a.generatedLine,column:a.generatedColumn}};null!=a.source&&(d.source=a.source,null!=b&&(d.source=f.relative(b,d.source)),d.original={line:a.originalLine,column:a.originalColumn},null!=a.name&&(d.name=a.name)),c.addMapping(d)}),a.sources.forEach(function(b){var d=a.sourceContentFor(b);null!=d&&c.setSourceContent(b,d)}),c},d.prototype.addMapping=function(a){var b=f.getArg(a,"generated"),c=f.getArg(a,"original",null),d=f.getArg(a,"source",null),e=f.getArg(a,"name",null);this._skipValidation||this._validateMapping(b,c,d,e),null!=d&&(d=String(d),this._sources.has(d)||this._sources.add(d)),null!=e&&(e=String(e),this._names.has(e)||this._names.add(e)),this._mappings.add({generatedLine:b.line,generatedColumn:b.column,originalLine:null!=c&&c.line,originalColumn:null!=c&&c.column,source:d,name:e})},d.prototype.setSourceContent=function(a,b){var c=a;null!=this._sourceRoot&&(c=f.relative(this._sourceRoot,c)),null!=b?(this._sourcesContents||(this._sourcesContents=Object.create(null)),this._sourcesContents[f.toSetString(c)]=b):this._sourcesContents&&(delete this._sourcesContents[f.toSetString(c)],0===Object.keys(this._sourcesContents).length&&(this._sourcesContents=null))},d.prototype.applySourceMap=function(a,b,c){var d=b;if(null==b){if(null==a.file)throw new Error('SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, or the source map\'s "file" property. Both were omitted.');d=a.file}var e=this._sourceRoot;null!=e&&(d=f.relative(e,d));var h=new g,i=new g;this._mappings.unsortedForEach(function(b){if(b.source===d&&null!=b.originalLine){var g=a.originalPositionFor({line:b.originalLine,column:b.originalColumn});null!=g.source&&(b.source=g.source,null!=c&&(b.source=f.join(c,b.source)),null!=e&&(b.source=f.relative(e,b.source)),b.originalLine=g.line,b.originalColumn=g.column,null!=g.name&&(b.name=g.name))}var j=b.source;null==j||h.has(j)||h.add(j);var k=b.name;null==k||i.has(k)||i.add(k)},this),this._sources=h,this._names=i,a.sources.forEach(function(b){var d=a.sourceContentFor(b);null!=d&&(null!=c&&(b=f.join(c,b)),null!=e&&(b=f.relative(e,b)),this.setSourceContent(b,d))},this)},d.prototype._validateMapping=function(a,b,c,d){if((!(a&&"line"in a&&"column"in a&&a.line>0&&a.column>=0)||b||c||d)&&!(a&&"line"in a&&"column"in a&&b&&"line"in b&&"column"in b&&a.line>0&&a.column>=0&&b.line>0&&b.column>=0&&c))throw new Error("Invalid mapping: "+JSON.stringify({generated:a,source:c,original:b,name:d}))},d.prototype._serializeMappings=function(){for(var a,b,c,d,g=0,h=1,i=0,j=0,k=0,l=0,m="",n=this._mappings.toArray(),o=0,p=n.length;o<p;o++){if(b=n[o],a="",b.generatedLine!==h)for(g=0;b.generatedLine!==h;)a+=";",h++;else if(o>0){if(!f.compareByGeneratedPositionsInflated(b,n[o-1]))continue;a+=","}a+=e.encode(b.generatedColumn-g),g=b.generatedColumn,null!=b.source&&(d=this._sources.indexOf(b.source),a+=e.encode(d-l),l=d,a+=e.encode(b.originalLine-1-j),j=b.originalLine-1,a+=e.encode(b.originalColumn-i),i=b.originalColumn,null!=b.name&&(c=this._names.indexOf(b.name),a+=e.encode(c-k),k=c)),m+=a}return m},d.prototype._generateSourcesContent=function(a,b){return a.map(function(a){if(!this._sourcesContents)return null;null!=b&&(a=f.relative(b,a));var c=f.toSetString(a);return Object.prototype.hasOwnProperty.call(this._sourcesContents,c)?this._sourcesContents[c]:null},this)},d.prototype.toJSON=function(){var a={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return null!=this._file&&(a.file=this._file),null!=this._sourceRoot&&(a.sourceRoot=this._sourceRoot),this._sourcesContents&&(a.sourcesContent=this._generateSourcesContent(a.sources,a.sourceRoot)),a},d.prototype.toString=function(){return JSON.stringify(this.toJSON())},c.SourceMapGenerator=d},{"./array-set":140,"./base64-vlq":141,"./mapping-list":144,"./util":149}],148:[function(a,b,c){function d(a,b,c,d,e){this.children=[],this.sourceContents={},this.line=null==a?null:a,this.column=null==b?null:b,this.source=null==c?null:c,this.name=null==e?null:e,this[g]=!0,null!=d&&this.add(d)}var e=a("./source-map-generator").SourceMapGenerator,f=a("./util"),g="$$$isSourceNode$$$";d.fromStringWithSourceMap=function(a,b,c){function e(a,b){if(null===a||void 0===a.source)g.add(b);else{var e=c?f.join(c,a.source):a.source;g.add(new d(a.originalLine,a.originalColumn,e,b,a.name))}}var g=new d,h=a.split(/(\r?\n)/),i=function(){return h.shift()+(h.shift()||"")},j=1,k=0,l=null;return b.eachMapping(function(a){if(null!==l){if(!(j<a.generatedLine)){var b=h[0],c=b.substr(0,a.generatedColumn-k);return h[0]=b.substr(a.generatedColumn-k),k=a.generatedColumn,e(l,c),void(l=a)}e(l,i()),j++,k=0}for(;j<a.generatedLine;)g.add(i()),j++;if(k<a.generatedColumn){var b=h[0];g.add(b.substr(0,a.generatedColumn)),h[0]=b.substr(a.generatedColumn),k=a.generatedColumn}l=a},this),h.length>0&&(l&&e(l,i()),g.add(h.join(""))),b.sources.forEach(function(a){var d=b.sourceContentFor(a);null!=d&&(null!=c&&(a=f.join(c,a)),g.setSourceContent(a,d))}),g},d.prototype.add=function(a){if(Array.isArray(a))a.forEach(function(a){this.add(a)},this);else{if(!a[g]&&"string"!=typeof a)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+a);a&&this.children.push(a)}return this},d.prototype.prepend=function(a){if(Array.isArray(a))for(var b=a.length-1;b>=0;b--)this.prepend(a[b]);else{if(!a[g]&&"string"!=typeof a)throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+a);this.children.unshift(a)}return this},d.prototype.walk=function(a){for(var b,c=0,d=this.children.length;c<d;c++)b=this.children[c],b[g]?b.walk(a):""!==b&&a(b,{source:this.source,line:this.line,column:this.column,name:this.name})},d.prototype.join=function(a){var b,c,d=this.children.length;if(d>0){for(b=[],c=0;c<d-1;c++)b.push(this.children[c]),b.push(a);b.push(this.children[c]),this.children=b}return this},d.prototype.replaceRight=function(a,b){var c=this.children[this.children.length-1];return c[g]?c.replaceRight(a,b):"string"==typeof c?this.children[this.children.length-1]=c.replace(a,b):this.children.push("".replace(a,b)),this},d.prototype.setSourceContent=function(a,b){this.sourceContents[f.toSetString(a)]=b},d.prototype.walkSourceContents=function(a){for(var b=0,c=this.children.length;b<c;b++)this.children[b][g]&&this.children[b].walkSourceContents(a);for(var d=Object.keys(this.sourceContents),b=0,c=d.length;b<c;b++)a(f.fromSetString(d[b]),this.sourceContents[d[b]])},d.prototype.toString=function(){var a="";return this.walk(function(b){a+=b}),a},d.prototype.toStringWithSourceMap=function(a){var b={code:"",line:1,column:0},c=new e(a),d=!1,f=null,g=null,h=null,i=null;return this.walk(function(a,e){b.code+=a,null!==e.source&&null!==e.line&&null!==e.column?(f===e.source&&g===e.line&&h===e.column&&i===e.name||c.addMapping({source:e.source,original:{line:e.line,column:e.column},generated:{line:b.line,column:b.column},name:e.name}),f=e.source,g=e.line,h=e.column,i=e.name,d=!0):d&&(c.addMapping({generated:{line:b.line,column:b.column}}),f=null,d=!1);for(var j=0,k=a.length;j<k;j++)10===a.charCodeAt(j)?(b.line++,b.column=0,j+1===k?(f=null,d=!1):d&&c.addMapping({source:e.source,original:{line:e.line,column:e.column},generated:{line:b.line,column:b.column},name:e.name})):b.column++}),this.walkSourceContents(function(a,b){c.setSourceContent(a,b)}),{code:b.code,map:c}},c.SourceNode=d},{"./source-map-generator":147,"./util":149}],149:[function(a,b,c){function d(a,b,c){if(b in a)return a[b];if(3===arguments.length)return c;throw new Error('"'+b+'" is a required argument.')}function e(a){var b=a.match(r);return b?{scheme:b[1],auth:b[2],host:b[3],port:b[4],path:b[5]}:null}function f(a){var b="";return a.scheme&&(b+=a.scheme+":"),b+="//",a.auth&&(b+=a.auth+"@"),a.host&&(b+=a.host),a.port&&(b+=":"+a.port),a.path&&(b+=a.path),b}function g(a){var b=a,d=e(a);if(d){if(!d.path)return a;b=d.path}for(var g,h=c.isAbsolute(b),i=b.split(/\/+/),j=0,k=i.length-1;k>=0;k--)g=i[k],"."===g?i.splice(k,1):".."===g?j++:j>0&&(""===g?(i.splice(k+1,j),j=0):(i.splice(k,2),j--));return b=i.join("/"),""===b&&(b=h?"/":"."),d?(d.path=b,f(d)):b}function h(a,b){""===a&&(a="."),""===b&&(b=".");var c=e(b),d=e(a);if(d&&(a=d.path||"/"),c&&!c.scheme)return d&&(c.scheme=d.scheme),f(c);if(c||b.match(s))return b;if(d&&!d.host&&!d.path)return d.host=b,f(d);var h="/"===b.charAt(0)?b:g(a.replace(/\/+$/,"")+"/"+b);return d?(d.path=h,f(d)):h}function i(a,b){""===a&&(a="."),a=a.replace(/\/$/,"");for(var c=0;0!==b.indexOf(a+"/");){var d=a.lastIndexOf("/");if(d<0)return b;if(a=a.slice(0,d),a.match(/^([^\/]+:\/)?\/*$/))return b;++c}return Array(c+1).join("../")+b.substr(a.length+1)}function j(a){return a}function k(a){return m(a)?"$"+a:a}function l(a){return m(a)?a.slice(1):a}function m(a){if(!a)return!1;var b=a.length;if(b<9)return!1;if(95!==a.charCodeAt(b-1)||95!==a.charCodeAt(b-2)||111!==a.charCodeAt(b-3)||116!==a.charCodeAt(b-4)||111!==a.charCodeAt(b-5)||114!==a.charCodeAt(b-6)||112!==a.charCodeAt(b-7)||95!==a.charCodeAt(b-8)||95!==a.charCodeAt(b-9))return!1;for(var c=b-10;c>=0;c--)if(36!==a.charCodeAt(c))return!1;return!0}function n(a,b,c){var d=a.source-b.source;return 0!==d?d:0!==(d=a.originalLine-b.originalLine)?d:0!==(d=a.originalColumn-b.originalColumn)||c?d:0!==(d=a.generatedColumn-b.generatedColumn)?d:(d=a.generatedLine-b.generatedLine,0!==d?d:a.name-b.name)}function o(a,b,c){var d=a.generatedLine-b.generatedLine;return 0!==d?d:0!==(d=a.generatedColumn-b.generatedColumn)||c?d:0!==(d=a.source-b.source)?d:0!==(d=a.originalLine-b.originalLine)?d:(d=a.originalColumn-b.originalColumn,0!==d?d:a.name-b.name)}function p(a,b){return a===b?0:a>b?1:-1}function q(a,b){var c=a.generatedLine-b.generatedLine;return 0!==c?c:0!==(c=a.generatedColumn-b.generatedColumn)?c:0!==(c=p(a.source,b.source))?c:0!==(c=a.originalLine-b.originalLine)?c:(c=a.originalColumn-b.originalColumn,0!==c?c:p(a.name,b.name))}c.getArg=d;var r=/^(?:([\w+\-.]+):)?\/\/(?:(\w+:\w+)@)?([\w.]*)(?::(\d+))?(\S*)$/,s=/^data:.+\,.+$/;c.urlParse=e,c.urlGenerate=f,c.normalize=g,c.join=h,c.isAbsolute=function(a){return"/"===a.charAt(0)||!!a.match(r)},c.relative=i;var t=function(){return!("__proto__"in Object.create(null))}();c.toSetString=t?j:k,c.fromSetString=t?j:l,c.compareByOriginalPositions=n,c.compareByGeneratedPositionsDeflated=o,c.compareByGeneratedPositionsInflated=q},{}],150:[function(a,b,c){c.SourceMapGenerator=a("./lib/source-map-generator").SourceMapGenerator,c.SourceMapConsumer=a("./lib/source-map-consumer").SourceMapConsumer,c.SourceNode=a("./lib/source-node").SourceNode},{"./lib/source-map-consumer":146,"./lib/source-map-generator":147,"./lib/source-node":148}],151:[function(a,b,c){(function(b){var d=a("./lib/request"),e=a("xtend"),f=a("builtin-status-codes"),g=a("url"),h=c;h.request=function(a,c){a="string"==typeof a?g.parse(a):e(a);var f=b.location.protocol.search(/^https?:$/)===-1?"http:":"",h=a.protocol||f,i=a.hostname||a.host,j=a.port,k=a.path||"/";i&&i.indexOf(":")!==-1&&(i="["+i+"]"),a.url=(i?h+"//"+i:"")+(j?":"+j:"")+k,a.method=(a.method||"GET").toUpperCase(),a.headers=a.headers||{};var l=new d(a);return c&&l.on("response",c),l},h.get=function(a,b){var c=h.request(a,b);return c.end(),c},h.Agent=function(){},h.Agent.defaultMaxSockets=4,h.STATUS_CODES=f,h.METHODS=["CHECKOUT","CONNECT","COPY","DELETE","GET","HEAD","LOCK","M-SEARCH","MERGE","MKACTIVITY","MKCOL","MOVE","NOTIFY","OPTIONS","PATCH","POST","PROPFIND","PROPPATCH","PURGE","PUT","REPORT","SEARCH","SUBSCRIBE","TRACE","UNLOCK","UNSUBSCRIBE"]}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./lib/request":153,"builtin-status-codes":6,url:158,xtend:165}],152:[function(a,b,c){(function(a){function b(){if(void 0!==f)return f;if(a.XMLHttpRequest){f=new a.XMLHttpRequest;try{f.open("GET",a.XDomainRequest?"/":"https://example.com")}catch(a){f=null}}else f=null;return f}function d(a){var c=b();if(!c)return!1;try{return c.responseType=a,c.responseType===a}catch(a){}return!1}function e(a){return"function"==typeof a}c.fetch=e(a.fetch)&&e(a.ReadableStream),c.blobConstructor=!1;try{new Blob([new ArrayBuffer(1)]),c.blobConstructor=!0}catch(a){}var f,g=void 0!==a.ArrayBuffer,h=g&&e(a.ArrayBuffer.prototype.slice);c.arraybuffer=c.fetch||g&&d("arraybuffer"),c.msstream=!c.fetch&&h&&d("ms-stream"),c.mozchunkedarraybuffer=!c.fetch&&g&&d("moz-chunked-arraybuffer"),c.overrideMimeType=c.fetch||!!b()&&e(b().overrideMimeType),c.vbArray=e(a.VBArray),f=null}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],153:[function(a,b,c){(function(c,d,e){function f(a,b){return h.fetch&&b?"fetch":h.mozchunkedarraybuffer?"moz-chunked-arraybuffer":h.msstream?"ms-stream":h.arraybuffer&&a?"arraybuffer":h.vbArray&&a?"text:vbarray":"text"}function g(a){try{var b=a.status;return null!==b&&0!==b}catch(a){return!1}}var h=a("./capability"),i=a("inherits"),j=a("./response"),k=a("readable-stream"),l=a("to-arraybuffer"),m=j.IncomingMessage,n=j.readyStates,o=b.exports=function(a){var b=this;k.Writable.call(b),b._opts=a,b._body=[],b._headers={},a.auth&&b.setHeader("Authorization","Basic "+new e(a.auth).toString("base64")),Object.keys(a.headers).forEach(function(c){b.setHeader(c,a.headers[c])});var c,d=!0;if("disable-fetch"===a.mode||"timeout"in a)d=!1,c=!0;else if("prefer-streaming"===a.mode)c=!1;else if("allow-wrong-content-type"===a.mode)c=!h.overrideMimeType;else{if(a.mode&&"default"!==a.mode&&"prefer-fast"!==a.mode)throw new Error("Invalid value for opts.mode");c=!0}b._mode=f(c,d),b.on("finish",function(){b._onFinish()})};i(o,k.Writable),o.prototype.setHeader=function(a,b){var c=this,d=a.toLowerCase();p.indexOf(d)===-1&&(c._headers[d]={name:a,value:b})},o.prototype.getHeader=function(a){return this._headers[a.toLowerCase()].value},o.prototype.removeHeader=function(a){delete this._headers[a.toLowerCase()]},o.prototype._onFinish=function(){var a=this;if(!a._destroyed){var b=a._opts,f=a._headers,g=null;if("POST"!==b.method&&"PUT"!==b.method&&"PATCH"!==b.method&&"MERGE"!==b.method||(g=h.blobConstructor?new d.Blob(a._body.map(function(a){return l(a)}),{type:(f["content-type"]||{}).value||""}):e.concat(a._body).toString()),"fetch"===a._mode){var i=Object.keys(f).map(function(a){return[f[a].name,f[a].value]});d.fetch(a._opts.url,{method:a._opts.method,headers:i,body:g||void 0,mode:"cors",credentials:b.withCredentials?"include":"same-origin"}).then(function(b){a._fetchResponse=b,a._connect()},function(b){a.emit("error",b)})}else{var j=a._xhr=new d.XMLHttpRequest;try{j.open(a._opts.method,a._opts.url,!0)}catch(b){return void c.nextTick(function(){a.emit("error",b)})}"responseType"in j&&(j.responseType=a._mode.split(":")[0]),"withCredentials"in j&&(j.withCredentials=!!b.withCredentials),"text"===a._mode&&"overrideMimeType"in j&&j.overrideMimeType("text/plain; charset=x-user-defined"),"timeout"in b&&(j.timeout=b.timeout,j.ontimeout=function(){a.emit("timeout")}),Object.keys(f).forEach(function(a){j.setRequestHeader(f[a].name,f[a].value)}),a._response=null,j.onreadystatechange=function(){switch(j.readyState){case n.LOADING:case n.DONE:a._onXHRProgress()}},"moz-chunked-arraybuffer"===a._mode&&(j.onprogress=function(){a._onXHRProgress()}),j.onerror=function(){a._destroyed||a.emit("error",new Error("XHR error"))};try{j.send(g)}catch(b){return void c.nextTick(function(){a.emit("error",b)})}}}},o.prototype._onXHRProgress=function(){var a=this;g(a._xhr)&&!a._destroyed&&(a._response||a._connect(),a._response._onXHRProgress())},o.prototype._connect=function(){var a=this;a._destroyed||(a._response=new m(a._xhr,a._fetchResponse,a._mode),a._response.on("error",function(b){a.emit("error",b)}),a.emit("response",a._response))},o.prototype._write=function(a,b,c){this._body.push(a),c()},o.prototype.abort=o.prototype.destroy=function(){var a=this;a._destroyed=!0,a._response&&(a._response._destroyed=!0),a._xhr&&a._xhr.abort()},o.prototype.end=function(a,b,c){var d=this;"function"==typeof a&&(c=a,a=void 0),k.Writable.prototype.end.call(d,a,b,c)},o.prototype.flushHeaders=function(){},o.prototype.setTimeout=function(){},o.prototype.setNoDelay=function(){},o.prototype.setSocketKeepAlive=function(){};var p=["accept-charset","accept-encoding","access-control-request-headers","access-control-request-method","connection","content-length","cookie","cookie2","date","dnt","expect","host","keep-alive","origin","referer","te","trailer","transfer-encoding","upgrade","user-agent","via"]}).call(this,a("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},a("buffer").Buffer)},{"./capability":152,"./response":154,_process:111,buffer:5,inherits:104,"readable-stream":122,"to-arraybuffer":156}],154:[function(a,b,c){(function(b,d,e){var f=a("./capability"),g=a("inherits"),h=a("readable-stream"),i=c.readyStates={UNSENT:0,OPENED:1,HEADERS_RECEIVED:2,LOADING:3,DONE:4},j=c.IncomingMessage=function(a,c,d){function g(){j.read().then(function(a){if(!i._destroyed){if(a.done)return void i.push(null);i.push(new e(a.value)),g()}}).catch(function(a){i.emit("error",a)})}var i=this;if(h.Readable.call(i),i._mode=d,i.headers={},i.rawHeaders=[],i.trailers={},i.rawTrailers=[],i.on("end",function(){b.nextTick(function(){i.emit("close")})}),"fetch"===d){i._fetchResponse=c,i.url=c.url,i.statusCode=c.status,i.statusMessage=c.statusText,c.headers.forEach(function(a,b){i.headers[b.toLowerCase()]=a,i.rawHeaders.push(b,a)});var j=c.body.getReader();g()}else{i._xhr=a,i._pos=0,i.url=a.responseURL,i.statusCode=a.status,i.statusMessage=a.statusText;if(a.getAllResponseHeaders().split(/\r?\n/).forEach(function(a){var b=a.match(/^([^:]+):\s*(.*)/);if(b){var c=b[1].toLowerCase();"set-cookie"===c?(void 0===i.headers[c]&&(i.headers[c]=[]),i.headers[c].push(b[2])):void 0!==i.headers[c]?i.headers[c]+=", "+b[2]:i.headers[c]=b[2],i.rawHeaders.push(b[1],b[2])}}),i._charset="x-user-defined",!f.overrideMimeType){var k=i.rawHeaders["mime-type"];if(k){var l=k.match(/;\s*charset=([^;])(;|$)/);l&&(i._charset=l[1].toLowerCase())}i._charset||(i._charset="utf-8")}}};g(j,h.Readable),j.prototype._read=function(){},j.prototype._onXHRProgress=function(){var a=this,b=a._xhr,c=null;switch(a._mode){case"text:vbarray":if(b.readyState!==i.DONE)break;try{c=new d.VBArray(b.responseBody).toArray()}catch(a){}if(null!==c){a.push(new e(c));break}case"text":try{c=b.responseText}catch(b){a._mode="text:vbarray";break}if(c.length>a._pos){var f=c.substr(a._pos);if("x-user-defined"===a._charset){for(var g=new e(f.length),h=0;h<f.length;h++)g[h]=255&f.charCodeAt(h);a.push(g)}else a.push(f,a._charset);a._pos=c.length}break;case"arraybuffer":if(b.readyState!==i.DONE||!b.response)break;c=b.response,a.push(new e(new Uint8Array(c)));break;case"moz-chunked-arraybuffer":if(c=b.response,b.readyState!==i.LOADING||!c)break;a.push(new e(new Uint8Array(c)));break;case"ms-stream":if(c=b.response,b.readyState!==i.LOADING)break;var j=new d.MSStreamReader;j.onprogress=function(){j.result.byteLength>a._pos&&(a.push(new e(new Uint8Array(j.result.slice(a._pos)))),a._pos=j.result.byteLength)},j.onload=function(){a.push(null)},j.readAsArrayBuffer(c)}a._xhr.readyState===i.DONE&&"ms-stream"!==a._mode&&a.push(null)}}).call(this,a("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{},a("buffer").Buffer)},{"./capability":152,_process:111,buffer:5,inherits:104,"readable-stream":122}],155:[function(a,b,c){function d(a){if(a&&!i(a))throw new Error("Unknown encoding: "+a)}function e(a){return a.toString(this.encoding)}function f(a){this.charReceived=a.length%2,this.charLength=this.charReceived?2:0}function g(a){this.charReceived=a.length%3,this.charLength=this.charReceived?3:0}var h=a("buffer").Buffer,i=h.isEncoding||function(a){switch(a&&a.toLowerCase()){case"hex":case"utf8":case"utf-8":case"ascii":case"binary":case"base64":case"ucs2":case"ucs-2":case"utf16le":case"utf-16le":case"raw":return!0;default:return!1}},j=c.StringDecoder=function(a){switch(this.encoding=(a||"utf8").toLowerCase().replace(/[-_]/,""),d(a),this.encoding){case"utf8":this.surrogateSize=3;break;case"ucs2":case"utf16le":this.surrogateSize=2,this.detectIncompleteChar=f;break;case"base64":this.surrogateSize=3,this.detectIncompleteChar=g;break;default:return void(this.write=e)}this.charBuffer=new h(6),this.charReceived=0,this.charLength=0};j.prototype.write=function(a){for(var b="";this.charLength;){var c=a.length>=this.charLength-this.charReceived?this.charLength-this.charReceived:a.length;if(a.copy(this.charBuffer,this.charReceived,0,c),this.charReceived+=c,this.charReceived<this.charLength)return"";a=a.slice(c,a.length),b=this.charBuffer.slice(0,this.charLength).toString(this.encoding);var d=b.charCodeAt(b.length-1);if(!(d>=55296&&d<=56319)){if(this.charReceived=this.charLength=0,0===a.length)return b;break}this.charLength+=this.surrogateSize,b=""}this.detectIncompleteChar(a);var e=a.length;this.charLength&&(a.copy(this.charBuffer,0,a.length-this.charReceived,e),e-=this.charReceived),b+=a.toString(this.encoding,0,e);var e=b.length-1,d=b.charCodeAt(e);if(d>=55296&&d<=56319){var f=this.surrogateSize;return this.charLength+=f,this.charReceived+=f,this.charBuffer.copy(this.charBuffer,f,0,f),a.copy(this.charBuffer,0,0,f),b.substring(0,e)}return b},j.prototype.detectIncompleteChar=function(a){for(var b=a.length>=3?3:a.length;b>0;b--){var c=a[a.length-b];if(1==b&&c>>5==6){this.charLength=2;break}if(b<=2&&c>>4==14){this.charLength=3;break}if(b<=3&&c>>3==30){this.charLength=4;break}}this.charReceived=b},j.prototype.end=function(a){var b="";if(a&&a.length&&(b=this.write(a)),this.charReceived){var c=this.charReceived,d=this.charBuffer,e=this.encoding;b+=d.slice(0,c).toString(e)}return b}},{buffer:5}],156:[function(a,b,c){var d=a("buffer").Buffer;b.exports=function(a){if(a instanceof Uint8Array){if(0===a.byteOffset&&a.byteLength===a.buffer.byteLength)return a.buffer;if("function"==typeof a.buffer.slice)return a.buffer.slice(a.byteOffset,a.byteOffset+a.byteLength)}if(d.isBuffer(a)){for(var b=new Uint8Array(a.length),c=a.length,e=0;e<c;e++)b[e]=a[e];return b.buffer}throw new Error("Argument must be a Buffer")}},{buffer:5}],157:[function(a,b,c){(function(b){function d(a){for(var b=Object.create(null),c=0;c<a.length;++c)b[a[c]]=!0;return b}function e(a,b){return Array.prototype.slice.call(a,b||0)}function f(a){return a.split("")}function g(a,b){return b.indexOf(a)>=0}function h(a,b){for(var c=0,d=b.length;c<d;++c)if(a(b[c]))return b[c]}function i(a,b){if(b<=0)return"";if(1==b)return a;var c=i(a,b>>1);return c+=c,1&b&&(c+=a),c}function j(a){Object.defineProperty(a.prototype,"stack",{get:function(){var a=new Error(this.message);a.name=this.name;try{throw a}catch(a){return a.stack}}})}function k(a,b){this.message=a,this.defs=b}function l(a,b,c){a===!0&&(a={});var d=a||{};if(c)for(var e in d)z(d,e)&&!z(b,e)&&k.croak("`"+e+"` is not a supported option",b);for(var e in b)z(b,e)&&(d[e]=a&&z(a,e)?a[e]:b[e]);return d}function m(a,b){var c=0;for(var d in b)z(b,d)&&(a[d]=b[d],c++);return c}function n(){}function o(){return!1}function p(){return!0}function q(a,b){a.indexOf(b)<0&&a.push(b)}function r(a,b){return a.replace(/\{(.+?)\}/g,function(a,c){return b&&b[c]})}function s(a,b){for(var c=a.length;--c>=0;)a[c]===b&&a.splice(c,1)}function t(a,b){function c(a,c){for(var d=[],e=0,f=0,g=0;e<a.length&&f<c.length;)b(a[e],c[f])<=0?d[g++]=a[e++]:d[g++]=c[f++];return e<a.length&&d.push.apply(d,a.slice(e)),f<c.length&&d.push.apply(d,c.slice(f)),d}function d(a){if(a.length<=1)return a;var b=Math.floor(a.length/2),e=a.slice(0,b),f=a.slice(b);return e=d(e),f=d(f),c(e,f)}return a.length<2?a.slice():d(a)}function u(a,b){return a.filter(function(a){return b.indexOf(a)<0})}function v(a,b){return a.filter(function(a){return b.indexOf(a)>=0})}function w(a){function b(a){return JSON.stringify(a).replace(/[\u2028\u2029]/g,function(a){switch(a){case"\u2028":return"\\u2028";case"\u2029":return"\\u2029"}return a})}function c(a){if(1==a.length)return d+="return str === "+b(a[0])+";";d+="switch(str){";for(var c=0;c<a.length;++c)d+="case "+b(a[c])+":";d+="return true}return false;"}a instanceof Array||(a=a.split(" "));var d="",e=[];a:for(var f=0;f<a.length;++f){for(var g=0;g<e.length;++g)if(e[g][0].length==a[f].length){e[g].push(a[f]);continue a}e.push([a[f]])}if(e.length>3){e.sort(function(a,b){return b.length-a.length}),d+="switch(str.length){";for(var f=0;f<e.length;++f){var h=e[f];d+="case "+h[0].length+":",c(h)}d+="}"}else c(a);return new Function("str",d)}function x(a,b){for(var c=a.length;--c>=0;)if(!b(a[c]))return!1;return!0}function y(){this._values=Object.create(null),this._size=0}function z(a,b){return Object.prototype.hasOwnProperty.call(a,b)}function A(a){for(var b,c=a.parent(-1),d=0;b=a.parent(d);d++){if(b instanceof ga&&b.body===c)return!0;if(!(b instanceof Xa&&b.car===c||b instanceof Va&&b.expression===c&&!(b instanceof Wa)||b instanceof Za&&b.expression===c||b instanceof $a&&b.expression===c||b instanceof db&&b.condition===c||b instanceof cb&&b.left===c||b instanceof bb&&b.expression===c))return!1;c=b}}function B(a,b,d,e){arguments.length<4&&(e=fa),b=b?b.split(/\s+/):[];var f=b;e&&e.PROPS&&(b=b.concat(e.PROPS));for(var g="return function AST_"+a+"(props){ if (props) { ",h=b.length;--h>=0;)g+="this."+b[h]+" = props."+b[h]+";";var i=e&&new e;(i&&i.initialize||d&&d.initialize)&&(g+="this.initialize();"),g+="}}";var j=new Function(g)();if(i&&(j.prototype=i,j.BASE=e),e&&e.SUBCLASSES.push(j),j.prototype.CTOR=j,j.PROPS=b||null,j.SELF_PROPS=f,j.SUBCLASSES=[],a&&(j.prototype.TYPE=j.TYPE=a),d)for(h in d)z(d,h)&&(/^\$/.test(h)?j[h.substr(1)]=d[h]:j.prototype[h]=d[h]);return j.DEFMETHOD=function(a,b){this.prototype[a]=b},
+void 0!==c&&(c["AST_"+a]=j),j}function C(a,b){var c=a.body;if(c instanceof ga)c._walk(b);else for(var d=0,e=c.length;d<e;d++)c[d]._walk(b)}function D(a){this.visit=a,this.stack=[],this.directives=Object.create(null)}function E(a){return a>=97&&a<=122||a>=65&&a<=90||a>=170&&Yb.letter.test(String.fromCharCode(a))}function F(a){return a>=48&&a<=57}function G(a){return F(a)||E(a)}function H(a){return Yb.digit.test(String.fromCharCode(a))}function I(a){return Yb.non_spacing_mark.test(a)||Yb.space_combining_mark.test(a)}function J(a){return Yb.connector_punctuation.test(a)}function K(a){return!Nb(a)&&/^[a-z_$][a-z0-9_$]*$/i.test(a)}function L(a){return 36==a||95==a||E(a)}function M(a){var b=a.charCodeAt(0);return L(b)||F(b)||8204==b||8205==b||I(a)||J(a)||H(b)}function N(a){return/^[a-z_$][a-z0-9_$]*$/i.test(a)}function O(a){if(Qb.test(a))return parseInt(a.substr(2),16);if(Rb.test(a))return parseInt(a.substr(1),8);var b=parseFloat(a);return b==a?b:void 0}function P(a,b,c,d,e){this.message=a,this.filename=b,this.line=c,this.col=d,this.pos=e}function Q(a,b,c,d,e){throw new P(a,b,c,d,e)}function R(a,b,c){return a.type==b&&(null==c||a.value==c)}function S(a,b,c,d){function e(){return B.text.charAt(B.pos)}function f(a,b){var c=B.text.charAt(B.pos++);if(a&&!c)throw Zb;return Ub(c)?(B.newline_before=B.newline_before||!b,++B.line,B.col=0,b||"\r"!=c||"\n"!=e()||(++B.pos,c="\n")):++B.col,c}function g(a){for(;a-- >0;)f()}function h(a){return B.text.substr(B.pos,a.length)==a}function i(){for(var a=B.text,b=B.pos,c=B.text.length;b<c;++b){if(Ub(a[b]))return b}return-1}function j(a,b){var c=B.text.indexOf(a,B.pos);if(b&&c==-1)throw Zb;return c}function k(){B.tokline=B.line,B.tokcol=B.col,B.tokpos=B.pos}function l(c,d,e){B.regex_allowed="operator"==c&&!_b(d)||"keyword"==c&&Ob(d)||"punc"==c&&Vb(d),C="punc"==c&&"."==d;var f={type:c,value:d,line:B.tokline,col:B.tokcol,pos:B.tokpos,endline:B.line,endcol:B.col,endpos:B.pos,nlb:B.newline_before,file:b};if(/^(?:num|string|regexp)$/i.test(c)&&(f.raw=a.substring(f.pos,f.endpos)),!e){f.comments_before=B.comments_before,B.comments_before=[];for(var g=0,h=f.comments_before.length;g<h;g++)f.nlb=f.nlb||f.comments_before[g].nlb}return B.newline_before=!1,new ea(f)}function m(){for(;Tb(e());)f()}function n(a){for(var b,c="",d=0;(b=e())&&a(b,d++);)c+=f();return c}function o(a){Q(a,b,B.tokline,B.tokcol,B.tokpos)}function p(a){var b=!1,c=!1,d=!1,e="."==a,f=n(function(f,g){var h=f.charCodeAt(0);switch(h){case 120:case 88:return!d&&(d=!0);case 101:case 69:return!!d||!b&&(b=c=!0);case 45:return c||0==g&&!a;case 43:return c;case c=!1,46:return!(e||d||b)&&(e=!0)}return G(h)});a&&(f=a+f),Rb.test(f)&&A.has_directive("use strict")&&o("Legacy octal literals are not allowed in strict mode");var g=O(f);if(!isNaN(g))return l("num",g);o("Invalid syntax: "+f)}function q(a){var b=f(!0,a);switch(b.charCodeAt(0)){case 110:return"\n";case 114:return"\r";case 116:return"\t";case 98:return"\b";case 118:return"\v";case 102:return"\f";case 120:return String.fromCharCode(s(2));case 117:return String.fromCharCode(s(4));case 10:return"";case 13:if("\n"==e())return f(!0,a),""}return b>="0"&&b<="7"?r(b):b}function r(a){var b=e();return b>="0"&&b<="7"&&(a+=f(!0),a[0]<="3"&&(b=e())>="0"&&b<="7"&&(a+=f(!0))),"0"===a?"\0":(a.length>0&&A.has_directive("use strict")&&o("Legacy octal escape sequences are not allowed in strict mode"),String.fromCharCode(parseInt(a,8)))}function s(a){for(var b=0;a>0;--a){var c=parseInt(f(!0),16);isNaN(c)&&o("Invalid hex-character pattern in string"),b=b<<4|c}return b}function t(a){var b,c=B.regex_allowed,d=i();return d==-1?(b=B.text.substr(B.pos),B.pos=B.text.length):(b=B.text.substring(B.pos,d),B.pos=d),B.col=B.tokcol+(B.pos-B.tokpos),B.comments_before.push(l(a,b,!0)),B.regex_allowed=c,A}function u(){for(var a,b,c=!1,d="",g=!1;null!=(a=e());)if(c)"u"!=a&&o("Expecting UnicodeEscapeSequence -- uXXXX"),a=q(),M(a)||o("Unicode char: "+a.charCodeAt(0)+" is not valid in identifier"),d+=a,c=!1;else if("\\"==a)g=c=!0,f();else{if(!M(a))break;d+=f()}return Lb(d)&&g&&(b=d.charCodeAt(0).toString(16).toUpperCase(),d="\\u"+"0000".substr(b.length)+b+d.slice(1)),d}function v(a){function b(a){if(!e())return a;var c=a+e();return Sb(c)?(f(),b(c)):a}return l("operator",b(a||f()))}function w(){switch(f(),e()){case"/":return f(),t("comment1");case"*":return f(),E()}return B.regex_allowed?H(""):v("/")}function x(){return f(),F(e().charCodeAt(0))?p("."):l("punc",".")}function y(){var a=u();return C?l("name",a):Mb(a)?l("atom",a):Lb(a)?Sb(a)?l("operator",a):l("keyword",a):l("name",a)}function z(a,b){return function(c){try{return b(c)}catch(b){if(b!==Zb)throw b;o(a)}}}function A(a){if(null!=a)return H(a);for(d&&0==B.pos&&h("#!")&&(k(),g(2),t("comment5"));;){if(m(),k(),c){if(h("<!--")){g(4),t("comment3");continue}if(h("-->")&&B.newline_before){g(3),t("comment4");continue}}var b=e();if(!b)return l("eof");var i=b.charCodeAt(0);switch(i){case 34:case 39:return D(b);case 46:return x();case 47:var j=w();if(j===A)continue;return j}if(F(i))return p();if(Wb(b))return l("punc",f());if(Pb(b))return v();if(92==i||L(i))return y();break}o("Unexpected character '"+b+"'")}var B={text:a,filename:b,pos:0,tokpos:0,line:1,tokline:0,col:0,tokcol:0,newline_before:!1,regex_allowed:!1,comments_before:[],directives:{},directive_stack:[]},C=!1,D=z("Unterminated string constant",function(a){for(var b=f(),c="";;){var d=f(!0,!0);if("\\"==d)d=q(!0);else if(Ub(d))o("Unterminated string constant");else if(d==b)break;c+=d}var e=l("string",c);return e.quote=a,e}),E=z("Unterminated multiline comment",function(){var a=B.regex_allowed,b=j("*/",!0),c=B.text.substring(B.pos,b).replace(/\r\n|\r|\u2028|\u2029/g,"\n");return g(c.length+2),B.comments_before.push(l("comment2",c,!0)),B.regex_allowed=a,A}),H=z("Unterminated regular expression",function(a){for(var b,c=!1,d=!1;b=f(!0);)if(Ub(b))o("Unexpected line terminator");else if(c)a+="\\"+b,c=!1;else if("["==b)d=!0,a+=b;else if("]"==b&&d)d=!1,a+=b;else{if("/"==b&&!d)break;"\\"==b?c=!0:a+=b}var e=u();try{return l("regexp",new RegExp(a,e))}catch(a){o(a.message)}});return A.context=function(a){return a&&(B=a),B},A.add_directive=function(a){B.directive_stack[B.directive_stack.length-1].push(a),void 0===B.directives[a]?B.directives[a]=1:B.directives[a]++},A.push_directives_stack=function(){B.directive_stack.push([])},A.pop_directives_stack=function(){for(var a=B.directive_stack[B.directive_stack.length-1],b=0;b<a.length;b++)B.directives[a[b]]--;B.directive_stack.pop()},A.has_directive=function(a){return void 0!==B.directives[a]&&B.directives[a]>0},A}function T(a,b){function c(a,b){return R(O.token,a,b)}function d(){return O.peeked||(O.peeked=O.input())}function e(){return O.prev=O.token,O.peeked?(O.token=O.peeked,O.peeked=null):O.token=O.input(),O.in_directives=O.in_directives&&("string"==O.token.type||c("punc",";")),O.token}function f(){return O.prev}function g(a,b,c,d){var e=O.input.context();Q(a,e.filename,null!=b?b:e.tokline,null!=c?c:e.tokcol,null!=d?d:e.tokpos)}function i(a,b){g(b,a.line,a.col)}function j(a){null==a&&(a=O.token),i(a,"Unexpected token: "+a.type+" ("+a.value+")")}function k(a,b){if(c(a,b))return e();i(O.token,"Unexpected token "+O.token.type+" «"+O.token.value+"», expected "+a+" «"+b+"»")}function m(a){return k("punc",a)}function n(){return!b.strict&&(O.token.nlb||c("eof")||c("punc","}"))}function o(a){c("punc",";")?e():a||n()||j()}function p(){m("(");var a=ea(!0);return m(")"),a}function q(a){return function(){var b=O.token,c=a(),d=f();return c.start=b,c.end=d,c}}function r(){(c("operator","/")||c("operator","/="))&&(O.peeked=null,O.token=O.input(O.token.value.substr(1)))}function s(){var a=I(ub);h(function(b){return b.name==a.name},O.labels)&&g("Label "+a.name+" defined twice"),m(":"),O.labels.push(a);var b=P();return O.labels.pop(),b instanceof pa||a.references.forEach(function(b){b instanceof Ia&&(b=b.label.start,g("Continue label `"+a.name+"` refers to non-IterationStatement.",b.line,b.col,b.pos))}),new oa({body:b,label:a})}function t(a){return new ja({body:(a=ea(!0),o(),a)})}function u(a){var b,c=null;n()||(c=I(wb,!0)),null!=c?(b=h(function(a){return a.name==c.name},O.labels),b||g("Undefined label "+c.name),c.thedef=b):0==O.in_loop&&g(a.TYPE+" not inside a loop or switch"),o();var d=new a({label:c});return b&&b.references.push(d),d}function v(){m("(");var a=null;return!c("punc",";")&&(a=c("keyword","var")?(e(),U(!0)):ea(!0,!0),c("operator","in"))?(a instanceof Sa&&a.definitions.length>1&&g("Only one variable declaration allowed in for..in loop"),e(),x(a)):w(a)}function w(a){m(";");var b=c("punc",";")?null:ea(!0);m(";");var d=c("punc",")")?null:ea(!0);return m(")"),new ta({init:a,condition:b,step:d,body:M(P)})}function x(a){var b=a instanceof Sa?a.definitions[0].name:null,c=ea(!0);return m(")"),new ua({init:a,name:b,object:c,body:M(P)})}function y(){var a=p(),b=P(),d=null;return c("keyword","else")&&(e(),d=P()),new Ja({condition:a,body:b,alternative:d})}function z(){m("{");for(var a=[];!c("punc","}");)c("eof")&&j(),a.push(P());return e(),a}function A(){m("{");for(var a,b=[],d=null,g=null;!c("punc","}");)c("eof")&&j(),c("keyword","case")?(g&&(g.end=f()),d=[],g=new Na({start:(a=O.token,e(),a),expression:ea(!0),body:d}),b.push(g),m(":")):c("keyword","default")?(g&&(g.end=f()),d=[],g=new Ma({start:(a=O.token,e(),m(":"),a),body:d}),b.push(g)):(d||j(),d.push(P()));return g&&(g.end=f()),e(),b}function B(){var a=z(),b=null,d=null;if(c("keyword","catch")){var h=O.token;e(),m("(");var i=I(tb);m(")"),b=new Pa({start:h,argname:i,body:z(),end:f()})}if(c("keyword","finally")){var h=O.token;e(),d=new Qa({start:h,body:z(),end:f()})}return b||d||g("Missing catch/finally blocks"),new Oa({body:a,bcatch:b,bfinally:d})}function C(a,b){for(var d=[];d.push(new Ua({start:O.token,name:I(b?pb:ob),value:c("operator","=")?(e(),ea(!1,a)):null,end:f()})),c("punc",",");)e();return d}function D(){var a,b=O.token;switch(b.type){case"name":case"keyword":a=H(vb);break;case"num":a=new Ab({start:b,end:b,value:b.value});break;case"string":a=new zb({start:b,end:b,value:b.value,quote:b.quote});break;case"regexp":a=new Bb({start:b,end:b,value:b.value});break;case"atom":switch(b.value){case"false":a=new Jb({start:b,end:b});break;case"true":a=new Kb({start:b,end:b});break;case"null":a=new Db({start:b,end:b})}break;case"operator":N(b.value)||g("Invalid getter/setter name: "+b.value,b.line,b.col,b.pos),a=H(vb)}return e(),a}function E(a,b,d){for(var f=!0,g=[];!c("punc",a)&&(f?f=!1:m(","),!b||!c("punc",a));)c("punc",",")&&d?g.push(new Gb({start:O.token,end:O.token})):g.push(ea(!1));return e(),g}function F(){var a=O.token;switch(e(),a.type){case"num":case"string":case"name":case"operator":case"keyword":case"atom":return a.value;default:j()}}function G(){var a=O.token;switch(e(),a.type){case"name":case"operator":case"keyword":case"atom":return a.value;default:j()}}function H(a){var b=O.token.value;return new("this"==b?xb:a)({name:String(b),start:O.token,end:O.token})}function I(a,b){if(!c("name"))return b||g("Name expected"),null;var d=H(a);return e(),d}function J(a,b,c){return"++"!=b&&"--"!=b||L(c)||g("Invalid use of "+b+" operator"),new a({operator:b,expression:c})}function K(a){return ba(aa(!0),0,a)}function L(a){return!b.strict||!(a instanceof xb)&&(a instanceof Ya||a instanceof lb)}function M(a){++O.in_loop;var b=a();return--O.in_loop,b}b=l(b,{strict:!1,filename:null,toplevel:null,expression:!1,html5_comments:!0,bare_returns:!1,shebang:!0});var O={input:"string"==typeof a?S(a,b.filename,b.html5_comments,b.shebang):a,token:null,prev:null,peeked:null,in_function:0,in_directives:!0,in_loop:0,labels:[]};O.token=e();var P=q(function(){var a;switch(r(),O.token.type){case"string":var h=!1;O.in_directives===!0&&((R(d(),"punc",";")||d().nlb)&&O.token.raw.indexOf("\\")===-1?O.input.add_directive(O.token.value):O.in_directives=!1);var h=O.in_directives,i=t();return h?new ia({start:i.body.start,end:i.body.end,quote:i.body.quote,value:i.body.value}):i;case"num":case"regexp":case"operator":case"atom":return t();case"name":return R(d(),"punc",":")?s():t();case"punc":switch(O.token.value){case"{":return new la({start:O.token,body:z(),end:f()});case"[":case"(":return t();case";":return O.in_directives=!1,e(),new ma;default:j()}case"keyword":switch(a=O.token.value,e(),a){case"break":return u(Ha);case"continue":return u(Ia);case"debugger":return o(),new ha;case"do":return new ra({body:M(P),condition:(k("keyword","while"),a=p(),o(!0),a)});case"while":return new sa({condition:p(),body:M(P)});case"for":return v();case"function":return T(Ba);case"if":return y();case"return":return 0!=O.in_function||b.bare_returns||g("'return' outside of function"),new Ea({value:c("punc",";")?(e(),null):n()?null:(a=ea(!0),o(),a)});case"switch":return new Ka({expression:p(),body:M(A)});case"throw":return O.token.nlb&&g("Illegal newline after 'throw'"),new Fa({value:(a=ea(!0),o(),a)});case"try":return B();case"var":return a=U(),o(),a;case"const":return a=V(),o(),a;case"with":return O.input.has_directive("use strict")&&g("Strict mode may not include a with statement"),new va({expression:p(),body:P()})}}j()}),T=function(a){var b=a===Ba,d=c("name")?I(b?rb:sb):null;return b&&!d&&j(),m("("),new a({name:d,argnames:function(a,b){for(;!c("punc",")");)a?a=!1:m(","),b.push(I(qb));return e(),b}(!0,[]),body:function(a,b){++O.in_function,O.in_directives=!0,O.input.push_directives_stack(),O.in_loop=0,O.labels=[];var c=z();return O.input.pop_directives_stack(),--O.in_function,O.in_loop=a,O.labels=b,c}(O.in_loop,O.labels)})},U=function(a){return new Sa({start:f(),definitions:C(a,!1),end:f()})},V=function(){return new Ta({start:f(),definitions:C(!1,!0),end:f()})},W=function(a){var b=O.token;k("operator","new");var d,g=X(!1);return c("punc","(")?(e(),d=E(")")):d=[],_(new Wa({start:b,expression:g,args:d,end:f()}),a)},X=function(a){if(c("operator","new"))return W(a);var b=O.token;if(c("punc")){switch(b.value){case"(":e();var d=ea(!0);return d.start=b,d.end=O.token,m(")"),_(d,a);case"[":return _(Y(),a);case"{":return _($(),a)}j()}if(c("keyword","function")){e();var g=T(Aa);return g.start=b,g.end=f(),_(g,a)}if(dc[O.token.type])return _(D(),a);j()},Y=q(function(){return m("["),new fb({elements:E("]",!b.strict,!0)})}),Z=q(function(){return T(za)}),$=q(function(){m("{");for(var a=!0,d=[];!c("punc","}")&&(a?a=!1:m(","),b.strict||!c("punc","}"));){var g=O.token,h=g.type,i=F();if("name"==h&&!c("punc",":")){if("get"==i){d.push(new kb({start:g,key:D(),value:Z(),end:f()}));continue}if("set"==i){d.push(new jb({start:g,key:D(),value:Z(),end:f()}));continue}}m(":"),d.push(new ib({start:g,quote:g.quote,key:i,value:ea(!1),end:f()}))}return e(),new gb({properties:d})}),_=function(a,b){var d=a.start;if(c("punc","."))return e(),_(new Za({start:d,expression:a,property:G(),end:f()}),b);if(c("punc","[")){e();var g=ea(!0);return m("]"),_(new $a({start:d,expression:a,property:g,end:f()}),b)}return b&&c("punc","(")?(e(),_(new Va({start:d,expression:a,args:E(")"),end:f()}),!0)):a},aa=function(a){var b=O.token;if(c("operator")&&$b(b.value)){e(),r();var d=J(ab,b.value,aa(a));return d.start=b,d.end=f(),d}for(var g=X(a);c("operator")&&_b(O.token.value)&&!O.token.nlb;)g=J(bb,O.token.value,g),g.start=b,g.end=O.token,e();return g},ba=function(a,b,d){var f=c("operator")?O.token.value:null;"in"==f&&d&&(f=null);var g=null!=f?bc[f]:null;if(null!=g&&g>b){e();var h=ba(aa(!0),g,d);return ba(new cb({start:a.start,left:a,operator:f,right:h,end:h.end}),b,d)}return a},ca=function(a){var b=O.token,d=K(a);if(c("operator","?")){e();var g=ea(!1);return m(":"),new db({start:b,condition:d,consequent:g,alternative:ea(!1,a),end:f()})}return d},da=function(a){var b=O.token,d=ca(a),h=O.token.value;if(c("operator")&&ac(h)){if(L(d))return e(),new eb({start:b,left:d,operator:h,right:da(a),end:f()});g("Invalid assignment")}return d},ea=function(a,b){var f=O.token,g=da(b);return a&&c("punc",",")?(e(),new Xa({start:f,car:g,cdr:ea(!0,b),end:d()})):g};return b.expression?ea(!0):function(){var a=O.token,d=[];for(O.input.push_directives_stack();!c("eof");)d.push(P());O.input.pop_directives_stack();var e=f(),g=b.toplevel;return g?(g.body=g.body.concat(d),g.end=e):g=new xa({start:a,body:d,end:e}),g}()}function U(a,b){D.call(this),this.before=a,this.after=b}function V(a,b,c){this.name=c.name,this.orig=[c],this.scope=a,this.references=[],this.global=!1,this.mangled_name=null,this.undeclared=!1,this.index=b,this.id=V.next_id++}function W(a){return"comment2"==a.type&&/@preserve|@license|@cc_on/i.test(a.value)}function X(a){function b(a,b){return a.replace(/[\u0000-\u001f\u007f-\uffff]/g,function(a){var c=a.charCodeAt(0).toString(16);if(c.length<=2&&!b){for(;c.length<2;)c="0"+c;return"\\x"+c}for(;c.length<4;)c="0"+c;return"\\u"+c})}function c(c,d){function e(){return"'"+c.replace(/\x27/g,"\\'")+"'"}function f(){return'"'+c.replace(/\x22/g,'\\"')+'"'}var g=0,h=0;switch(c=c.replace(/[\\\b\f\n\r\v\t\x22\x27\u2028\u2029\0\ufeff]/g,function(b,d){switch(b){case'"':return++g,'"';case"'":return++h,"'";case"\\":return"\\\\";case"\n":return"\\n";case"\r":return"\\r";case"\t":return"\\t";case"\b":return"\\b";case"\f":return"\\f";case"\v":return a.screw_ie8?"\\v":"\\x0B";case"\u2028":return"\\u2028";case"\u2029":return"\\u2029";case"\ufeff":return"\\ufeff";case"\0":return/[0-7]/.test(c.charAt(d+1))?"\\x00":"\\0"}return b}),a.ascii_only&&(c=b(c)),a.quote_style){case 1:return e();case 2:return f();case 3:return"'"==d?e():f();default:return g>h?e():f()}}function d(b,d){var e=c(b,d);return a.inline_script&&(e=e.replace(/<\x2fscript([>\/\t\n\f\r ])/gi,"<\\/script$1"),e=e.replace(/\x3c!--/g,"\\x3c!--"),e=e.replace(/--\x3e/g,"--\\x3e")),e}function e(c){return c=c.toString(),a.ascii_only&&(c=b(c,!0)),c}function f(b){return i(" ",a.indent_start+z-b*a.indent_level)}function g(){return H.charAt(H.length-1)}function h(b){b=String(b);var c=b.charAt(0);if(F&&(F=!1,c&&!(";}".indexOf(c)<0)||/[;]$/.test(H)||(a.semicolons||J(c)?(D+=";",A++,C++):(I(),D+="\n",C++,B++,A=0,/^\s+$/.test(b)&&(F=!0)),a.beautify||(E=!1))),!a.beautify&&a.preserve_line&&R[R.length-1])for(var d=R[R.length-1].start.line;B<d;)I(),D+="\n",C++,B++,A=0,E=!1;if(E){var e=g();(M(e)&&(M(c)||"\\"==c)||"/"==c&&c==e||("+"==c||"-"==c)&&c==H)&&(D+=" ",A++,C++),E=!1}D+=b,C+=b.length;var f=b.split(/\r?\n/),h=f.length-1;B+=h,A+=f[0].length,h>0&&(I(),A=f[h].length),H=b}function j(){F=!1,h(";")}function k(){return z+a.indent_level}function m(a){var b;return h("{"),O(),N(k(),function(){b=a()}),L(),h("}"),b}function q(a){h("(");var b=a();return h(")"),b}function r(a){h("[");var b=a();return h("]"),b}function s(){h(","),K()}function t(){h(":"),a.space_colon&&K()}function u(){return G&&I(),D}a=l(a,{indent_start:0,indent_level:4,quote_keys:!1,space_colon:!0,ascii_only:!1,unescape_regexps:!1,inline_script:!1,width:80,max_line_len:!1,beautify:!1,source_map:null,bracketize:!1,semicolons:!0,comments:!1,shebang:!0,preserve_line:!1,screw_ie8:!0,preamble:null,quote_style:0,keep_quoted_props:!1,wrap_iife:!1},!0);var v=o;if(a.comments){var x=a.comments;if("string"==typeof a.comments&&/^\/.*\/[a-zA-Z]*$/.test(a.comments)){var y=a.comments.lastIndexOf("/");x=new RegExp(a.comments.substr(1,y-1),a.comments.substr(y+1))}v=x instanceof RegExp?function(a){return"comment5"!=a.type&&x.test(a.value)}:"function"==typeof x?function(a){return"comment5"!=a.type&&x(this,a)}:"some"===x?W:p}var z=0,A=0,B=1,C=0,D="",E=!1,F=!1,G=0,H=null,I=a.max_line_len?function(){if(A>a.max_line_len){if(G){var b=D.slice(0,G),c=D.slice(G);D=b+"\n"+c,B++,C++,A=c.length}A>a.max_line_len&&fa.warn("Output exceeds {max_line_len} characters",a)}G=0}:n,J=w("( [ + * / - , ."),K=a.beautify?function(){h(" ")}:function(){E=!0},L=a.beautify?function(b){a.beautify&&h(f(b?.5:0))}:n,N=a.beautify?function(a,b){a===!0&&(a=k());var c=z;z=a;var d=b();return z=c,d}:function(a,b){return b()},O=a.beautify?function(){h("\n")}:a.max_line_len?function(){I(),G=D.length}:n,P=a.beautify?function(){h(";")}:function(){F=!0},Q=a.source_map?function(b,c){try{b&&a.source_map.add(b.file||"?",B,A,b.line,b.col,c||"name"!=b.type?c:b.value)}catch(a){fa.warn("Couldn't figure out mapping for {file}:{line},{col} → {cline},{ccol} [{name}]",{file:b.file,line:b.line,col:b.col,cline:B,ccol:A,name:c||""})}}:n,R=[];return{get:u,toString:u,indent:L,indentation:function(){return z},current_width:function(){return A-z},should_break:function(){return a.width&&this.current_width()>=a.width},newline:O,print:h,space:K,comma:s,colon:t,last:function(){return H},semicolon:P,force_semicolon:j,to_ascii:b,print_name:function(a){h(e(a))},print_string:function(a,b,c){var e=d(a,b);c===!0&&e.indexOf("\\")===-1&&(fc.test(D)||j(),j()),h(e)},encode_string:d,next_indent:k,with_indent:N,with_block:m,with_parens:q,with_square:r,add_mapping:Q,option:function(b){return a[b]},comment_filter:v,line:function(){return B},col:function(){return A},pos:function(){return C},push_node:function(a){R.push(a)},pop_node:function(){return R.pop()},parent:function(a){return R[R.length-2-(a||0)]}}}function Y(a,b){if(!(this instanceof Y))return new Y(a,b);U.call(this,this.before,this.after),this.options=l(a,{sequences:!b,properties:!b,dead_code:!b,drop_debugger:!b,unsafe:!1,unsafe_comps:!1,unsafe_math:!1,unsafe_proto:!1,conditionals:!b,comparisons:!b,evaluate:!b,booleans:!b,loops:!b,unused:!b,toplevel:!(!a||!a.top_retain),top_retain:null,hoist_funs:!b,keep_fargs:!0,keep_fnames:!1,hoist_vars:!1,if_return:!b,join_vars:!b,collapse_vars:!b,reduce_vars:!b,cascade:!b,side_effects:!b,pure_getters:!1,pure_funcs:null,negate_iife:!b,screw_ie8:!0,drop_console:!1,angular:!1,expression:!1,warnings:!0,global_defs:{},passes:1},!0);var c=this.options.pure_funcs;this.pure_funcs="function"==typeof c?c:c?function(a){return c.indexOf(a.expression.print_to_string())<0}:p;var d=this.options.top_retain;d instanceof RegExp?this.top_retain=function(a){return d.test(a.name)}:"function"==typeof d?this.top_retain=d:d&&("string"==typeof d&&(d=d.split(/,/)),this.top_retain=function(a){return d.indexOf(a.name)>=0});var e=this.options.sequences;this.sequences_limit=1==e?200:0|e,this.warnings_produced={}}function Z(a){function b(b,e,f,g,h,i){if(d){var j=d.originalPositionFor({line:g,column:h});if(null===j.source)return;b=j.source,g=j.line,h=j.column,i=j.name||i}c.addMapping({generated:{line:e+a.dest_line_diff,column:f},original:{line:g+a.orig_line_diff,column:h},source:b,name:i})}a=l(a,{file:null,root:null,orig:null,orig_line_diff:0,dest_line_diff:0});var c=new ba.SourceMapGenerator({file:a.file,sourceRoot:a.root}),d=a.orig&&new ba.SourceMapConsumer(a.orig);return d&&Array.isArray(a.orig.sources)&&d._sources.toArray().forEach(function(a){var b=d.sourceContentFor(a,!0);b&&c.setSourceContent(a,b)}),{add:b,get:function(){return c},toString:function(){return JSON.stringify(c.toJSON())}}}function $(){function a(a){q(b,a)}var b=[];return[Object,Array,Function,Number,String,Boolean,Error,Math,Date,RegExp].forEach(function(b){Object.getOwnPropertyNames(b).map(a),b.prototype&&Object.getOwnPropertyNames(b.prototype).map(a)}),b}function _(a,b){function c(a){return!!K(a)&&(!(r.indexOf(a)>=0)&&(!(i.indexOf(a)>=0)&&(b.only_cache?j.props.has(a):!/^[0-9.]+$/.test(a))))}function d(a){return!(n&&a in s)&&(!(m&&!m.test(a))&&(!(i.indexOf(a)>=0)&&(j.props.has(a)||p.indexOf(a)>=0)))}function e(a,b){if(b)return void(s[a]=!0);c(a)&&q(p,a),d(a)||q(r,a)}function f(a){if(!d(a))return a;var b=j.props.get(a);if(!b){if(o){var e="_$"+a+"$"+k+"_";!c(e)||n&&e in s||(b=e)}if(!b)do{b=ec(++j.cname)}while(!c(b)||n&&b in s);j.props.set(a,b)}return b}function g(a,b){var c={};try{!function a(d){d.walk(new D(function(d){if(d instanceof Xa)return a(d.cdr),!0;if(d instanceof zb)return e(d.value,b),!0;if(d instanceof db)return a(d.consequent),a(d.alternative),!0;throw c}))}(a)}catch(a){if(a!==c)throw a}}function h(a){return a.transform(new U(function(a){return a instanceof Xa?a.cdr=h(a.cdr):a instanceof zb?a.value=f(a.value):a instanceof db&&(a.consequent=h(a.consequent),a.alternative=h(a.alternative)),a}))}b=l(b,{reserved:null,cache:null,only_cache:!1,regex:null,ignore_quoted:!1,debug:!1});var i=b.reserved;null==i&&(i=$());var j=b.cache;null==j&&(j={cname:-1,props:new y});var k,m=b.regex,n=b.ignore_quoted,o=b.debug!==!1;o&&(k=b.debug===!0?"":b.debug);var p=[],r=[],s={};return a.walk(new D(function(a){a instanceof ib?e(a.key,n&&a.quote):a instanceof hb?e(a.key.name):a instanceof Za?e(a.property):a instanceof $a&&g(a.property,n)})),a.transform(new U(function(a){a instanceof ib?n&&a.quote||(a.key=f(a.key)):a instanceof hb?a.key.name=f(a.key.name):a instanceof Za?a.property=f(a.property):a instanceof $a&&(n||(a.property=h(a.property)))}))}var aa=a("util"),ba=a("source-map"),ca=c;k.prototype=Object.create(Error.prototype),k.prototype.constructor=k,k.prototype.name="DefaultsError",j(k),k.croak=function(a,b){throw new k(a,b)};var da=function(){function a(a,f,g){function h(){var h=f(a[i],i),l=h instanceof d;return l&&(h=h.v),h instanceof b?(h=h.v,h instanceof c?k.push.apply(k,g?h.v.slice().reverse():h.v):k.push(h)):h!==e&&(h instanceof c?j.push.apply(j,g?h.v.slice().reverse():h.v):j.push(h)),l}var i,j=[],k=[];if(a instanceof Array)if(g){for(i=a.length;--i>=0&&!h(););j.reverse(),k.reverse()}else for(i=0;i<a.length&&!h();++i);else for(i in a)if(z(a,i)&&h())break;return k.concat(j)}function b(a){this.v=a}function c(a){this.v=a}function d(a){this.v=a}a.at_top=function(a){return new b(a)},a.splice=function(a){return new c(a)},a.last=function(a){return new d(a)};var e=a.skip={};return a}();y.prototype={set:function(a,b){return this.has(a)||++this._size,this._values["$"+a]=b,this},add:function(a,b){return this.has(a)?this.get(a).push(b):this.set(a,[b]),this},get:function(a){return this._values["$"+a]},del:function(a){return this.has(a)&&(--this._size,delete this._values["$"+a]),this},has:function(a){return"$"+a in this._values},each:function(a){for(var b in this._values)a(this._values[b],b.substr(1))},size:function(){return this._size},map:function(a){var b=[];for(var c in this._values)b.push(a(this._values[c],c.substr(1)));return b},toObject:function(){return this._values}},y.fromObject=function(a){var b=new y;return b._size=m(b._values,a),b};var ea=B("Token","type value line col pos endline endcol endpos nlb comments_before file raw",{},null),fa=B("Node","start end",{_clone:function(a){if(a){var b=this.clone();return b.transform(new U(function(a){if(a!==b)return a.clone(!0)}))}return new this.CTOR(this)},clone:function(a){return this._clone(a)},$documentation:"Base class of all AST nodes",$propdoc:{start:"[AST_Token] The first token of this node",end:"[AST_Token] The last token of this node"},_walk:function(a){return a._visit(this)},walk:function(a){return this._walk(a)}},null);fa.warn_function=null,fa.warn=function(a,b){fa.warn_function&&fa.warn_function(r(a,b))};var ga=B("Statement",null,{$documentation:"Base class of all statements"}),ha=B("Debugger",null,{$documentation:"Represents a debugger statement"},ga),ia=B("Directive","value scope quote",{$documentation:'Represents a directive, like "use strict";',$propdoc:{value:"[string] The value of this directive as a plain string (it's not an AST_String!)",scope:"[AST_Scope/S] The scope that this directive affects",quote:"[string] the original quote character"}},ga),ja=B("SimpleStatement","body",{$documentation:"A statement consisting of an expression, i.e. a = 1 + 2",$propdoc:{body:"[AST_Node] an expression node (should not be instanceof AST_Statement)"},_walk:function(a){return a._visit(this,function(){this.body._walk(a)})}},ga),ka=B("Block","body",{$documentation:"A body of statements (usually bracketed)",$propdoc:{body:"[AST_Statement*] an array of statements"},_walk:function(a){return a._visit(this,function(){C(this,a)})}},ga),la=B("BlockStatement",null,{$documentation:"A block statement"},ka),ma=B("EmptyStatement",null,{$documentation:"The empty statement (empty block or simply a semicolon)",_walk:function(a){return a._visit(this)}},ga),na=B("StatementWithBody","body",{$documentation:"Base class for all statements that contain one nested body: `For`, `ForIn`, `Do`, `While`, `With`",$propdoc:{body:"[AST_Statement] the body; this should always be present, even if it's an AST_EmptyStatement"},_walk:function(a){return a._visit(this,function(){this.body._walk(a)})}},ga),oa=B("LabeledStatement","label",{$documentation:"Statement with a label",$propdoc:{label:"[AST_Label] a label definition"},_walk:function(a){return a._visit(this,function(){this.label._walk(a),this.body._walk(a)})},clone:function(a){var b=this._clone(a);if(a){var c=b.label.references,d=this.label;b.walk(new D(function(a){a instanceof Ga&&a.label&&a.label.thedef===d&&c.push(a)}))}return b}},na),pa=B("IterationStatement",null,{$documentation:"Internal class.  All loops inherit from it."},na),qa=B("DWLoop","condition",{$documentation:"Base class for do/while statements",$propdoc:{condition:"[AST_Node] the loop condition.  Should not be instanceof AST_Statement"}},pa),ra=B("Do",null,{$documentation:"A `do` statement",_walk:function(a){return a._visit(this,function(){this.body._walk(a),this.condition._walk(a)})}},qa),sa=B("While",null,{$documentation:"A `while` statement",_walk:function(a){return a._visit(this,function(){this.condition._walk(a),this.body._walk(a)})}},qa),ta=B("For","init condition step",{$documentation:"A `for` statement",$propdoc:{init:"[AST_Node?] the `for` initialization code, or null if empty",condition:"[AST_Node?] the `for` termination clause, or null if empty",step:"[AST_Node?] the `for` update clause, or null if empty"},_walk:function(a){return a._visit(this,function(){this.init&&this.init._walk(a),this.condition&&this.condition._walk(a),this.step&&this.step._walk(a),this.body._walk(a)})}},pa),ua=B("ForIn","init name object",{$documentation:"A `for ... in` statement",$propdoc:{init:"[AST_Node] the `for/in` initialization code",name:"[AST_SymbolRef?] the loop variable, only if `init` is AST_Var",object:"[AST_Node] the object that we're looping through"},_walk:function(a){return a._visit(this,function(){this.init._walk(a),this.object._walk(a),this.body._walk(a)})}},pa),va=B("With","expression",{$documentation:"A `with` statement",$propdoc:{expression:"[AST_Node] the `with` expression"},_walk:function(a){return a._visit(this,function(){this.expression._walk(a),this.body._walk(a)})}},na),wa=B("Scope","directives variables functions uses_with uses_eval parent_scope enclosed cname",{$documentation:"Base class for all statements introducing a lexical scope",$propdoc:{directives:"[string*/S] an array of directives declared in this scope",variables:"[Object/S] a map of name -> SymbolDef for all variables/functions defined in this scope",functions:"[Object/S] like `variables`, but only lists function declarations",uses_with:"[boolean/S] tells whether this scope uses the `with` statement",uses_eval:"[boolean/S] tells whether this scope contains a direct call to the global `eval`",parent_scope:"[AST_Scope?/S] link to the parent scope",enclosed:"[SymbolDef*/S] a list of all symbol definitions that are accessed from this scope or any subscopes",cname:"[integer/S] current index for mangling variables (used internally by the mangler)"}},ka),xa=B("Toplevel","globals",{$documentation:"The toplevel scope",$propdoc:{globals:"[Object/S] a map of name -> SymbolDef for all undeclared names"},wrap_enclose:function(a){var b=this,c=[],d=[];a.forEach(function(a){var b=a.lastIndexOf(":");c.push(a.substr(0,b)),d.push(a.substr(b+1))});var e="(function("+d.join(",")+"){ '$ORIG'; })("+c.join(",")+")";return e=T(e),e=e.transform(new U(function(a){if(a instanceof ia&&"$ORIG"==a.value)return da.splice(b.body)}))},wrap_commonjs:function(a,b){var c=this,d=[];b&&(c.figure_out_scope(),c.walk(new D(function(a){a instanceof nb&&a.definition().global&&(h(function(b){return b.name==a.name},d)||d.push(a))})));var e="(function(exports, global){ '$ORIG'; '$EXPORTS'; global['"+a+"'] = exports; }({}, (function(){return this}())))";return e=T(e),e=e.transform(new U(function(a){if(a instanceof ia)switch(a.value){case"$ORIG":return da.splice(c.body)
+;case"$EXPORTS":var b=[];return d.forEach(function(a){b.push(new ja({body:new eb({left:new $a({expression:new vb({name:"exports"}),property:new zb({value:a.name})}),operator:"=",right:new vb(a)})}))}),da.splice(b)}}))}},wa),ya=B("Lambda","name argnames uses_arguments",{$documentation:"Base class for functions",$propdoc:{name:"[AST_SymbolDeclaration?] the name of this function",argnames:"[AST_SymbolFunarg*] array of function arguments",uses_arguments:"[boolean/S] tells whether this function accesses the arguments array"},_walk:function(a){return a._visit(this,function(){this.name&&this.name._walk(a);for(var b=this.argnames,c=0,d=b.length;c<d;c++)b[c]._walk(a);C(this,a)})}},wa),za=B("Accessor",null,{$documentation:"A setter/getter function.  The `name` property is always null."},ya),Aa=B("Function",null,{$documentation:"A function expression"},ya),Ba=B("Defun",null,{$documentation:"A function definition"},ya),Ca=B("Jump",null,{$documentation:"Base class for “jumps” (for now that's `return`, `throw`, `break` and `continue`)"},ga),Da=B("Exit","value",{$documentation:"Base class for “exits” (`return` and `throw`)",$propdoc:{value:"[AST_Node?] the value returned or thrown by this statement; could be null for AST_Return"},_walk:function(a){return a._visit(this,this.value&&function(){this.value._walk(a)})}},Ca),Ea=B("Return",null,{$documentation:"A `return` statement"},Da),Fa=B("Throw",null,{$documentation:"A `throw` statement"},Da),Ga=B("LoopControl","label",{$documentation:"Base class for loop control statements (`break` and `continue`)",$propdoc:{label:"[AST_LabelRef?] the label, or null if none"},_walk:function(a){return a._visit(this,this.label&&function(){this.label._walk(a)})}},Ca),Ha=B("Break",null,{$documentation:"A `break` statement"},Ga),Ia=B("Continue",null,{$documentation:"A `continue` statement"},Ga),Ja=B("If","condition alternative",{$documentation:"A `if` statement",$propdoc:{condition:"[AST_Node] the `if` condition",alternative:"[AST_Statement?] the `else` part, or null if not present"},_walk:function(a){return a._visit(this,function(){this.condition._walk(a),this.body._walk(a),this.alternative&&this.alternative._walk(a)})}},na),Ka=B("Switch","expression",{$documentation:"A `switch` statement",$propdoc:{expression:"[AST_Node] the `switch` “discriminant”"},_walk:function(a){return a._visit(this,function(){this.expression._walk(a),C(this,a)})}},ka),La=B("SwitchBranch",null,{$documentation:"Base class for `switch` branches"},ka),Ma=B("Default",null,{$documentation:"A `default` switch branch"},La),Na=B("Case","expression",{$documentation:"A `case` switch branch",$propdoc:{expression:"[AST_Node] the `case` expression"},_walk:function(a){return a._visit(this,function(){this.expression._walk(a),C(this,a)})}},La),Oa=B("Try","bcatch bfinally",{$documentation:"A `try` statement",$propdoc:{bcatch:"[AST_Catch?] the catch block, or null if not present",bfinally:"[AST_Finally?] the finally block, or null if not present"},_walk:function(a){return a._visit(this,function(){C(this,a),this.bcatch&&this.bcatch._walk(a),this.bfinally&&this.bfinally._walk(a)})}},ka),Pa=B("Catch","argname",{$documentation:"A `catch` node; only makes sense as part of a `try` statement",$propdoc:{argname:"[AST_SymbolCatch] symbol for the exception"},_walk:function(a){return a._visit(this,function(){this.argname._walk(a),C(this,a)})}},ka),Qa=B("Finally",null,{$documentation:"A `finally` node; only makes sense as part of a `try` statement"},ka),Ra=B("Definitions","definitions",{$documentation:"Base class for `var` or `const` nodes (variable declarations/initializations)",$propdoc:{definitions:"[AST_VarDef*] array of variable definitions"},_walk:function(a){return a._visit(this,function(){for(var b=this.definitions,c=0,d=b.length;c<d;c++)b[c]._walk(a)})}},ga),Sa=B("Var",null,{$documentation:"A `var` statement"},Ra),Ta=B("Const",null,{$documentation:"A `const` statement"},Ra),Ua=B("VarDef","name value",{$documentation:"A variable declaration; only appears in a AST_Definitions node",$propdoc:{name:"[AST_SymbolVar|AST_SymbolConst] name of the variable",value:"[AST_Node?] initializer, or null of there's no initializer"},_walk:function(a){return a._visit(this,function(){this.name._walk(a),this.value&&this.value._walk(a)})}}),Va=B("Call","expression args",{$documentation:"A function call expression",$propdoc:{expression:"[AST_Node] expression to invoke as function",args:"[AST_Node*] array of arguments"},_walk:function(a){return a._visit(this,function(){this.expression._walk(a);for(var b=this.args,c=0,d=b.length;c<d;c++)b[c]._walk(a)})}}),Wa=B("New",null,{$documentation:"An object instantiation.  Derives from a function call since it has exactly the same properties"},Va),Xa=B("Seq","car cdr",{$documentation:"A sequence expression (two comma-separated expressions)",$propdoc:{car:"[AST_Node] first element in sequence",cdr:"[AST_Node] second element in sequence"},$cons:function(a,b){var c=new Xa(a);return c.car=a,c.cdr=b,c},$from_array:function(a){if(0==a.length)return null;if(1==a.length)return a[0].clone();for(var b=null,c=a.length;--c>=0;)b=Xa.cons(a[c],b);for(var d=b;d;){if(d.cdr&&!d.cdr.cdr){d.cdr=d.cdr.car;break}d=d.cdr}return b},to_array:function(){for(var a=this,b=[];a;){if(b.push(a.car),a.cdr&&!(a.cdr instanceof Xa)){b.push(a.cdr);break}a=a.cdr}return b},add:function(a){for(var b=this;b;){if(!(b.cdr instanceof Xa)){var c=Xa.cons(b.cdr,a);return b.cdr=c}b=b.cdr}},len:function(){return this.cdr instanceof Xa?this.cdr.len()+1:2},_walk:function(a){return a._visit(this,function(){this.car._walk(a),this.cdr&&this.cdr._walk(a)})}}),Ya=B("PropAccess","expression property",{$documentation:'Base class for property access expressions, i.e. `a.foo` or `a["foo"]`',$propdoc:{expression:"[AST_Node] the “container” expression",property:"[AST_Node|string] the property to access.  For AST_Dot this is always a plain string, while for AST_Sub it's an arbitrary AST_Node"}}),Za=B("Dot",null,{$documentation:"A dotted property access expression",_walk:function(a){return a._visit(this,function(){this.expression._walk(a)})}},Ya),$a=B("Sub",null,{$documentation:'Index-style property access, i.e. `a["foo"]`',_walk:function(a){return a._visit(this,function(){this.expression._walk(a),this.property._walk(a)})}},Ya),_a=B("Unary","operator expression",{$documentation:"Base class for unary expressions",$propdoc:{operator:"[string] the operator",expression:"[AST_Node] expression that this unary operator applies to"},_walk:function(a){return a._visit(this,function(){this.expression._walk(a)})}}),ab=B("UnaryPrefix",null,{$documentation:"Unary prefix expression, i.e. `typeof i` or `++i`"},_a),bb=B("UnaryPostfix",null,{$documentation:"Unary postfix expression, i.e. `i++`"},_a),cb=B("Binary","left operator right",{$documentation:"Binary expression, i.e. `a + b`",$propdoc:{left:"[AST_Node] left-hand side expression",operator:"[string] the operator",right:"[AST_Node] right-hand side expression"},_walk:function(a){return a._visit(this,function(){this.left._walk(a),this.right._walk(a)})}}),db=B("Conditional","condition consequent alternative",{$documentation:"Conditional expression using the ternary operator, i.e. `a ? b : c`",$propdoc:{condition:"[AST_Node]",consequent:"[AST_Node]",alternative:"[AST_Node]"},_walk:function(a){return a._visit(this,function(){this.condition._walk(a),this.consequent._walk(a),this.alternative._walk(a)})}}),eb=B("Assign",null,{$documentation:"An assignment expression — `a = b + 5`"},cb),fb=B("Array","elements",{$documentation:"An array literal",$propdoc:{elements:"[AST_Node*] array of elements"},_walk:function(a){return a._visit(this,function(){for(var b=this.elements,c=0,d=b.length;c<d;c++)b[c]._walk(a)})}}),gb=B("Object","properties",{$documentation:"An object literal",$propdoc:{properties:"[AST_ObjectProperty*] array of properties"},_walk:function(a){return a._visit(this,function(){for(var b=this.properties,c=0,d=b.length;c<d;c++)b[c]._walk(a)})}}),hb=B("ObjectProperty","key value",{$documentation:"Base class for literal object properties",$propdoc:{key:"[string] the property name converted to a string for ObjectKeyVal.  For setters and getters this is an arbitrary AST_Node.",value:"[AST_Node] property value.  For setters and getters this is an AST_Function."},_walk:function(a){return a._visit(this,function(){this.value._walk(a)})}}),ib=B("ObjectKeyVal","quote",{$documentation:"A key: value object property",$propdoc:{quote:"[string] the original quote character"}},hb),jb=B("ObjectSetter",null,{$documentation:"An object setter property"},hb),kb=B("ObjectGetter",null,{$documentation:"An object getter property"},hb),lb=B("Symbol","scope name thedef",{$propdoc:{name:"[string] name of this symbol",scope:"[AST_Scope/S] the current scope (not necessarily the definition scope)",thedef:"[SymbolDef/S] the definition of this symbol"},$documentation:"Base class for all symbols"}),mb=B("SymbolAccessor",null,{$documentation:"The name of a property accessor (setter/getter function)"},lb),nb=B("SymbolDeclaration","init",{$documentation:"A declaration symbol (symbol in var/const, function name or argument, symbol in catch)"},lb),ob=B("SymbolVar",null,{$documentation:"Symbol defining a variable"},nb),pb=B("SymbolConst",null,{$documentation:"A constant declaration"},nb),qb=B("SymbolFunarg",null,{$documentation:"Symbol naming a function argument"},ob),rb=B("SymbolDefun",null,{$documentation:"Symbol defining a function"},nb),sb=B("SymbolLambda",null,{$documentation:"Symbol naming a function expression"},nb),tb=B("SymbolCatch",null,{$documentation:"Symbol naming the exception in catch"},nb),ub=B("Label","references",{$documentation:"Symbol naming a label (declaration)",$propdoc:{references:"[AST_LoopControl*] a list of nodes referring to this label"},initialize:function(){this.references=[],this.thedef=this}},lb),vb=B("SymbolRef",null,{$documentation:"Reference to some symbol (not definition/declaration)"},lb),wb=B("LabelRef",null,{$documentation:"Reference to a label symbol"},lb),xb=B("This",null,{$documentation:"The `this` symbol"},lb),yb=B("Constant",null,{$documentation:"Base class for all constants",getValue:function(){return this.value}}),zb=B("String","value quote",{$documentation:"A string literal",$propdoc:{value:"[string] the contents of this string",quote:"[string] the original quote character"}},yb),Ab=B("Number","value literal",{$documentation:"A number literal",$propdoc:{value:"[number] the numeric value",literal:"[string] numeric value as string (optional)"}},yb),Bb=B("RegExp","value",{$documentation:"A regexp literal",$propdoc:{value:"[RegExp] the actual regexp"}},yb),Cb=B("Atom",null,{$documentation:"Base class for atoms"},yb),Db=B("Null",null,{$documentation:"The `null` atom",value:null},Cb),Eb=B("NaN",null,{$documentation:"The impossible value",value:NaN},Cb),Fb=B("Undefined",null,{$documentation:"The `undefined` value",value:void 0},Cb),Gb=B("Hole",null,{$documentation:"A hole in an array",value:void 0},Cb),Hb=B("Infinity",null,{$documentation:"The `Infinity` value",value:1/0},Cb),Ib=B("Boolean",null,{$documentation:"Base class for booleans"},Cb),Jb=B("False",null,{$documentation:"The `false` atom",value:!1},Ib),Kb=B("True",null,{$documentation:"The `true` atom",value:!0},Ib);D.prototype={_visit:function(a,b){this.push(a);var c=this.visit(a,b?function(){b.call(a)}:n);return!c&&b&&b.call(a),this.pop(a),c},parent:function(a){return this.stack[this.stack.length-2-(a||0)]},push:function(a){a instanceof ya?this.directives=Object.create(this.directives):a instanceof ia&&(this.directives[a.value]=!this.directives[a.value]||"up"),this.stack.push(a)},pop:function(a){this.stack.pop(),a instanceof ya&&(this.directives=Object.getPrototypeOf(this.directives))},self:function(){return this.stack[this.stack.length-1]},find_parent:function(a){for(var b=this.stack,c=b.length;--c>=0;){var d=b[c];if(d instanceof a)return d}},has_directive:function(a){var b=this.directives[a];if(b)return b;var c=this.stack[this.stack.length-1];if(c instanceof wa)for(var d=0;d<c.body.length;++d){var e=c.body[d];if(!(e instanceof ia))break;if(e.value==a)return!0}},in_boolean_context:function(){for(var a=this.stack,b=a.length,c=a[--b];b>0;){var d=a[--b];if(d instanceof Ja&&d.condition===c||d instanceof db&&d.condition===c||d instanceof qa&&d.condition===c||d instanceof ta&&d.condition===c||d instanceof ab&&"!"==d.operator&&d.expression===c)return!0;if(!(d instanceof cb)||"&&"!=d.operator&&"||"!=d.operator)return!1;c=d}},loopcontrol_target:function(a){var b=this.stack;if(a)for(var c=b.length;--c>=0;){var d=b[c];if(d instanceof oa&&d.label.name==a.name)return d.body}else for(var c=b.length;--c>=0;){var d=b[c];if(d instanceof Ka||d instanceof pa)return d}}};var Lb="break case catch const continue debugger default delete do else finally for function if in instanceof new return switch throw try typeof var void while with",Mb="false null true",Nb="abstract boolean byte char class double enum export extends final float goto implements import int interface let long native package private protected public short static super synchronized this throws transient volatile yield "+Mb+" "+Lb,Ob="return new delete throw else case";Lb=w(Lb),Nb=w(Nb),Ob=w(Ob),Mb=w(Mb);var Pb=w(f("+-*&%=<>!?|~^")),Qb=/^0x[0-9a-f]+$/i,Rb=/^0[0-7]+$/,Sb=w(["in","instanceof","typeof","new","void","delete","++","--","+","-","!","~","&","|","^","*","/","%",">>","<<",">>>","<",">","<=",">=","==","===","!=","!==","?","=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&=","&&","||"]),Tb=w(f("  \n\r\t\f\v​           \u2028\u2029   \ufeff")),Ub=w(f("\n\r\u2028\u2029")),Vb=w(f("[{(,.;:")),Wb=w(f("[]{}(),;:")),Xb=w(f("gmsiy")),Yb={letter:new RegExp("[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u037F\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u052F\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0-\\u08B2\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0980\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u16EE-\\u16F8\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191E\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2160-\\u2188\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005-\\u3007\\u3021-\\u3029\\u3031-\\u3035\\u3038-\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA69D\\uA6A0-\\uA6EF\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA7AD\\uA7B0\\uA7B1\\uA7F7-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uA9E0-\\uA9E4\\uA9E6-\\uA9EF\\uA9FA-\\uA9FE\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA7E-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uAB30-\\uAB5A\\uAB5C-\\uAB5F\\uAB64\\uAB65\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]"),digit:new RegExp("[\\u0030-\\u0039\\u0660-\\u0669\\u06F0-\\u06F9\\u07C0-\\u07C9\\u0966-\\u096F\\u09E6-\\u09EF\\u0A66-\\u0A6F\\u0AE6-\\u0AEF\\u0B66-\\u0B6F\\u0BE6-\\u0BEF\\u0C66-\\u0C6F\\u0CE6-\\u0CEF\\u0D66-\\u0D6F\\u0DE6-\\u0DEF\\u0E50-\\u0E59\\u0ED0-\\u0ED9\\u0F20-\\u0F29\\u1040-\\u1049\\u1090-\\u1099\\u17E0-\\u17E9\\u1810-\\u1819\\u1946-\\u194F\\u19D0-\\u19D9\\u1A80-\\u1A89\\u1A90-\\u1A99\\u1B50-\\u1B59\\u1BB0-\\u1BB9\\u1C40-\\u1C49\\u1C50-\\u1C59\\uA620-\\uA629\\uA8D0-\\uA8D9\\uA900-\\uA909\\uA9D0-\\uA9D9\\uA9F0-\\uA9F9\\uAA50-\\uAA59\\uABF0-\\uABF9\\uFF10-\\uFF19]"),non_spacing_mark:new RegExp("[\\u0300-\\u036F\\u0483-\\u0487\\u0591-\\u05BD\\u05BF\\u05C1\\u05C2\\u05C4\\u05C5\\u05C7\\u0610-\\u061A\\u064B-\\u065E\\u0670\\u06D6-\\u06DC\\u06DF-\\u06E4\\u06E7\\u06E8\\u06EA-\\u06ED\\u0711\\u0730-\\u074A\\u07A6-\\u07B0\\u07EB-\\u07F3\\u0816-\\u0819\\u081B-\\u0823\\u0825-\\u0827\\u0829-\\u082D\\u0900-\\u0902\\u093C\\u0941-\\u0948\\u094D\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09BC\\u09C1-\\u09C4\\u09CD\\u09E2\\u09E3\\u0A01\\u0A02\\u0A3C\\u0A41\\u0A42\\u0A47\\u0A48\\u0A4B-\\u0A4D\\u0A51\\u0A70\\u0A71\\u0A75\\u0A81\\u0A82\\u0ABC\\u0AC1-\\u0AC5\\u0AC7\\u0AC8\\u0ACD\\u0AE2\\u0AE3\\u0B01\\u0B3C\\u0B3F\\u0B41-\\u0B44\\u0B4D\\u0B56\\u0B62\\u0B63\\u0B82\\u0BC0\\u0BCD\\u0C3E-\\u0C40\\u0C46-\\u0C48\\u0C4A-\\u0C4D\\u0C55\\u0C56\\u0C62\\u0C63\\u0CBC\\u0CBF\\u0CC6\\u0CCC\\u0CCD\\u0CE2\\u0CE3\\u0D41-\\u0D44\\u0D4D\\u0D62\\u0D63\\u0DCA\\u0DD2-\\u0DD4\\u0DD6\\u0E31\\u0E34-\\u0E3A\\u0E47-\\u0E4E\\u0EB1\\u0EB4-\\u0EB9\\u0EBB\\u0EBC\\u0EC8-\\u0ECD\\u0F18\\u0F19\\u0F35\\u0F37\\u0F39\\u0F71-\\u0F7E\\u0F80-\\u0F84\\u0F86\\u0F87\\u0F90-\\u0F97\\u0F99-\\u0FBC\\u0FC6\\u102D-\\u1030\\u1032-\\u1037\\u1039\\u103A\\u103D\\u103E\\u1058\\u1059\\u105E-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108D\\u109D\\u135F\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17B7-\\u17BD\\u17C6\\u17C9-\\u17D3\\u17DD\\u180B-\\u180D\\u18A9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193B\\u1A17\\u1A18\\u1A56\\u1A58-\\u1A5E\\u1A60\\u1A62\\u1A65-\\u1A6C\\u1A73-\\u1A7C\\u1A7F\\u1B00-\\u1B03\\u1B34\\u1B36-\\u1B3A\\u1B3C\\u1B42\\u1B6B-\\u1B73\\u1B80\\u1B81\\u1BA2-\\u1BA5\\u1BA8\\u1BA9\\u1C2C-\\u1C33\\u1C36\\u1C37\\u1CD0-\\u1CD2\\u1CD4-\\u1CE0\\u1CE2-\\u1CE8\\u1CED\\u1DC0-\\u1DE6\\u1DFD-\\u1DFF\\u20D0-\\u20DC\\u20E1\\u20E5-\\u20F0\\u2CEF-\\u2CF1\\u2DE0-\\u2DFF\\u302A-\\u302F\\u3099\\u309A\\uA66F\\uA67C\\uA67D\\uA6F0\\uA6F1\\uA802\\uA806\\uA80B\\uA825\\uA826\\uA8C4\\uA8E0-\\uA8F1\\uA926-\\uA92D\\uA947-\\uA951\\uA980-\\uA982\\uA9B3\\uA9B6-\\uA9B9\\uA9BC\\uAA29-\\uAA2E\\uAA31\\uAA32\\uAA35\\uAA36\\uAA43\\uAA4C\\uAAB0\\uAAB2-\\uAAB4\\uAAB7\\uAAB8\\uAABE\\uAABF\\uAAC1\\uABE5\\uABE8\\uABED\\uFB1E\\uFE00-\\uFE0F\\uFE20-\\uFE26]"),space_combining_mark:new RegExp("[\\u0903\\u093E-\\u0940\\u0949-\\u094C\\u094E\\u0982\\u0983\\u09BE-\\u09C0\\u09C7\\u09C8\\u09CB\\u09CC\\u09D7\\u0A03\\u0A3E-\\u0A40\\u0A83\\u0ABE-\\u0AC0\\u0AC9\\u0ACB\\u0ACC\\u0B02\\u0B03\\u0B3E\\u0B40\\u0B47\\u0B48\\u0B4B\\u0B4C\\u0B57\\u0BBE\\u0BBF\\u0BC1\\u0BC2\\u0BC6-\\u0BC8\\u0BCA-\\u0BCC\\u0BD7\\u0C01-\\u0C03\\u0C41-\\u0C44\\u0C82\\u0C83\\u0CBE\\u0CC0-\\u0CC4\\u0CC7\\u0CC8\\u0CCA\\u0CCB\\u0CD5\\u0CD6\\u0D02\\u0D03\\u0D3E-\\u0D40\\u0D46-\\u0D48\\u0D4A-\\u0D4C\\u0D57\\u0D82\\u0D83\\u0DCF-\\u0DD1\\u0DD8-\\u0DDF\\u0DF2\\u0DF3\\u0F3E\\u0F3F\\u0F7F\\u102B\\u102C\\u1031\\u1038\\u103B\\u103C\\u1056\\u1057\\u1062-\\u1064\\u1067-\\u106D\\u1083\\u1084\\u1087-\\u108C\\u108F\\u109A-\\u109C\\u17B6\\u17BE-\\u17C5\\u17C7\\u17C8\\u1923-\\u1926\\u1929-\\u192B\\u1930\\u1931\\u1933-\\u1938\\u19B0-\\u19C0\\u19C8\\u19C9\\u1A19-\\u1A1B\\u1A55\\u1A57\\u1A61\\u1A63\\u1A64\\u1A6D-\\u1A72\\u1B04\\u1B35\\u1B3B\\u1B3D-\\u1B41\\u1B43\\u1B44\\u1B82\\u1BA1\\u1BA6\\u1BA7\\u1BAA\\u1C24-\\u1C2B\\u1C34\\u1C35\\u1CE1\\u1CF2\\uA823\\uA824\\uA827\\uA880\\uA881\\uA8B4-\\uA8C3\\uA952\\uA953\\uA983\\uA9B4\\uA9B5\\uA9BA\\uA9BB\\uA9BD-\\uA9C0\\uAA2F\\uAA30\\uAA33\\uAA34\\uAA4D\\uAA7B\\uABE3\\uABE4\\uABE6\\uABE7\\uABE9\\uABEA\\uABEC]"),connector_punctuation:new RegExp("[\\u005F\\u203F\\u2040\\u2054\\uFE33\\uFE34\\uFE4D-\\uFE4F\\uFF3F]")};P.prototype=Object.create(Error.prototype),P.prototype.constructor=P,P.prototype.name="SyntaxError",j(P);var Zb={},$b=w(["typeof","void","delete","--","++","!","~","-","+"]),_b=w(["--","++"]),ac=w(["=","+=","-=","/=","*=","%=",">>=","<<=",">>>=","|=","^=","&="]),bc=function(a,b){for(var c=0;c<a.length;++c)for(var d=a[c],e=0;e<d.length;++e)b[d[e]]=c+1;return b}([["||"],["&&"],["|"],["^"],["&"],["==","===","!=","!=="],["<",">","<=",">=","in","instanceof"],[">>","<<",">>>"],["+","-"],["*","/","%"]],{}),cc=d(["for","do","while","switch"]),dc=d(["atom","num","string","regexp","name"]);U.prototype=new D,function(a){function b(b,c){b.DEFMETHOD("transform",function(b,d){var e,f;return b.push(this),b.before&&(e=b.before(this,c,d)),e===a&&(b.after?(b.stack[b.stack.length-1]=e=this,c(e,b),(f=b.after(e,d))!==a&&(e=f)):(e=this,c(e,b))),b.pop(this),e})}function c(a,b){return da(a,function(a){return a.transform(b,!0)})}b(fa,n),b(oa,function(a,b){a.label=a.label.transform(b),a.body=a.body.transform(b)}),b(ja,function(a,b){a.body=a.body.transform(b)}),b(ka,function(a,b){a.body=c(a.body,b)}),b(qa,function(a,b){a.condition=a.condition.transform(b),a.body=a.body.transform(b)}),b(ta,function(a,b){a.init&&(a.init=a.init.transform(b)),a.condition&&(a.condition=a.condition.transform(b)),a.step&&(a.step=a.step.transform(b)),a.body=a.body.transform(b)}),b(ua,function(a,b){a.init=a.init.transform(b),a.object=a.object.transform(b),a.body=a.body.transform(b)}),b(va,function(a,b){a.expression=a.expression.transform(b),a.body=a.body.transform(b)}),b(Da,function(a,b){a.value&&(a.value=a.value.transform(b))}),b(Ga,function(a,b){a.label&&(a.label=a.label.transform(b))}),b(Ja,function(a,b){a.condition=a.condition.transform(b),a.body=a.body.transform(b),a.alternative&&(a.alternative=a.alternative.transform(b))}),b(Ka,function(a,b){a.expression=a.expression.transform(b),a.body=c(a.body,b)}),b(Na,function(a,b){a.expression=a.expression.transform(b),a.body=c(a.body,b)}),b(Oa,function(a,b){a.body=c(a.body,b),a.bcatch&&(a.bcatch=a.bcatch.transform(b)),a.bfinally&&(a.bfinally=a.bfinally.transform(b))}),b(Pa,function(a,b){a.argname=a.argname.transform(b),a.body=c(a.body,b)}),b(Ra,function(a,b){a.definitions=c(a.definitions,b)}),b(Ua,function(a,b){a.name=a.name.transform(b),a.value&&(a.value=a.value.transform(b))}),b(ya,function(a,b){a.name&&(a.name=a.name.transform(b)),a.argnames=c(a.argnames,b),a.body=c(a.body,b)}),b(Va,function(a,b){a.expression=a.expression.transform(b),a.args=c(a.args,b)}),b(Xa,function(a,b){a.car=a.car.transform(b),a.cdr=a.cdr.transform(b)}),b(Za,function(a,b){a.expression=a.expression.transform(b)}),b($a,function(a,b){a.expression=a.expression.transform(b),a.property=a.property.transform(b)}),b(_a,function(a,b){a.expression=a.expression.transform(b)}),b(cb,function(a,b){a.left=a.left.transform(b),a.right=a.right.transform(b)}),b(db,function(a,b){a.condition=a.condition.transform(b),a.consequent=a.consequent.transform(b),a.alternative=a.alternative.transform(b)}),b(fb,function(a,b){a.elements=c(a.elements,b)}),b(gb,function(a,b){a.properties=c(a.properties,b)}),b(hb,function(a,b){a.value=a.value.transform(b)})}(),V.next_id=1,V.prototype={unmangleable:function(a){return a||(a={}),this.global&&!a.toplevel||this.undeclared||!a.eval&&(this.scope.uses_eval||this.scope.uses_with)||a.keep_fnames&&(this.orig[0]instanceof sb||this.orig[0]instanceof rb)},mangle:function(a){var b=a.cache&&a.cache.props;if(this.global&&b&&b.has(this.name))this.mangled_name=b.get(this.name);else if(!this.mangled_name&&!this.unmangleable(a)){var c=this.scope;!a.screw_ie8&&this.orig[0]instanceof sb&&(c=c.parent_scope),this.mangled_name=c.next_mangled(a,this),this.global&&b&&b.set(this.name,this.mangled_name)}}},xa.DEFMETHOD("figure_out_scope",function(a){a=l(a,{screw_ie8:!0,cache:null});var b=this,c=b.parent_scope=null,d=new y,e=null,f=new D(function(a,b){if(a instanceof Pa){var f=c;return c=new wa(a),c.init_scope_vars(),c.parent_scope=f,b(),c=f,!0}if(a instanceof wa){a.init_scope_vars();var f=a.parent_scope=c,g=e,h=d;return e=c=a,d=new y,b(),c=f,e=g,d=h,!0}if(a instanceof oa){var i=a.label;if(d.has(i.name))throw new Error(r("Label {name} defined twice",i));return d.set(i.name,i),b(),d.del(i.name),!0}if(a instanceof va)for(var j=c;j;j=j.parent_scope)j.uses_with=!0;else if(a instanceof lb&&(a.scope=c),a instanceof ub&&(a.thedef=a,a.references=[]),a instanceof sb)e.def_function(a);else if(a instanceof rb)(a.scope=e.parent_scope).def_function(a);else if(a instanceof ob||a instanceof pb)e.def_variable(a);else if(a instanceof tb)c.def_variable(a);else if(a instanceof wb){var k=d.get(a.name);if(!k)throw new Error(r("Undefined label {name} [{line},{col}]",{name:a.name,line:a.start.line,col:a.start.col}));a.thedef=k}});b.walk(f);var g=null,f=(b.globals=new y,new D(function(c,d){if(c instanceof ya){var e=g;return g=c,d(),g=e,!0}if(c instanceof Ga&&c.label)return c.label.thedef.references.push(c),!0;if(c instanceof vb){var h=c.name;if("eval"==h&&f.parent()instanceof Va)for(var i=c.scope;i&&!i.uses_eval;i=i.parent_scope)i.uses_eval=!0;var j=c.scope.find_variable(h);return c.scope instanceof ya&&"arguments"==h&&(c.scope.uses_arguments=!0),j||(j=b.def_global(c)),c.thedef=j,c.reference(a),!0}}));b.walk(f),a.screw_ie8||b.walk(new D(function(c,d){if(c instanceof tb){var e=c.name,f=c.thedef.references,g=c.thedef.scope.parent_scope,h=g.find_variable(e)||b.globals.get(e)||g.def_variable(c);return f.forEach(function(b){b.thedef=h,b.reference(a)}),c.thedef=h,!0}})),a.cache&&(this.cname=a.cache.cname)}),xa.DEFMETHOD("def_global",function(a){var b=this.globals,c=a.name;if(b.has(c))return b.get(c);var d=new V(this,b.size(),a);return d.undeclared=!0,d.global=!0,b.set(c,d),d}),wa.DEFMETHOD("init_scope_vars",function(){this.variables=new y,this.functions=new y,this.uses_with=!1,this.uses_eval=!1,this.parent_scope=null,this.enclosed=[],this.cname=-1}),ya.DEFMETHOD("init_scope_vars",function(){wa.prototype.init_scope_vars.apply(this,arguments),this.uses_arguments=!1;var a=new Ua({name:"arguments",start:this.start,end:this.end}),b=new V(this,this.variables.size(),a);this.variables.set(a.name,b)}),vb.DEFMETHOD("reference",function(a){var b=this.definition();b.references.push(this);for(var c=this.scope;c&&(q(c.enclosed,b),a.keep_fnames&&c.functions.each(function(a){q(b.scope.enclosed,a)}),c!==b.scope);)c=c.parent_scope}),wa.DEFMETHOD("find_variable",function(a){return a instanceof lb&&(a=a.name),this.variables.get(a)||this.parent_scope&&this.parent_scope.find_variable(a)}),wa.DEFMETHOD("def_function",function(a){this.functions.set(a.name,this.def_variable(a))}),wa.DEFMETHOD("def_variable",function(a){var b;return this.variables.has(a.name)?(b=this.variables.get(a.name),b.orig.push(a)):(b=new V(this,this.variables.size(),a),this.variables.set(a.name,b),b.global=!this.parent_scope),a.thedef=b}),wa.DEFMETHOD("next_mangled",function(a){var b=this.enclosed;a:for(;;){var c=ec(++this.cname);if(K(c)&&!(a.except.indexOf(c)>=0)){for(var d=b.length;--d>=0;){var e=b[d],f=e.mangled_name||e.unmangleable(a)&&e.name;if(c==f)continue a}return c}}}),Aa.DEFMETHOD("next_mangled",function(a,b){for(var c=b.orig[0]instanceof qb&&this.name&&this.name.definition(),d=c?c.mangled_name||c.name:null;;){var e=ya.prototype.next_mangled.call(this,a,b);if(!d||d!=e)return e}}),lb.DEFMETHOD("unmangleable",function(a){return this.definition().unmangleable(a)}),mb.DEFMETHOD("unmangleable",function(){return!0}),ub.DEFMETHOD("unmangleable",function(){return!1}),lb.DEFMETHOD("unreferenced",function(){return 0==this.definition().references.length&&!(this.scope.uses_eval||this.scope.uses_with)}),lb.DEFMETHOD("undeclared",function(){return this.definition().undeclared}),wb.DEFMETHOD("undeclared",function(){return!1}),ub.DEFMETHOD("undeclared",function(){return!1}),lb.DEFMETHOD("definition",function(){return this.thedef}),lb.DEFMETHOD("global",function(){return this.definition().global}),xa.DEFMETHOD("_default_mangler_options",function(a){return l(a,{except:[],eval:!1,sort:!1,toplevel:!1,screw_ie8:!0,keep_fnames:!1})}),xa.DEFMETHOD("mangle_names",function(a){a=this._default_mangler_options(a),a.except.push("arguments");var b=-1,c=[];a.cache&&this.globals.each(function(b){a.except.indexOf(b.name)<0&&c.push(b)});var d=new D(function(e,f){if(e instanceof oa){var g=b;return f(),b=g,!0}if(e instanceof wa){var h=(d.parent(),[]);return e.variables.each(function(b){a.except.indexOf(b.name)<0&&h.push(b)}),void c.push.apply(c,h)}if(e instanceof ub){var i;do{i=ec(++b)}while(!K(i));return e.mangled_name=i,!0}if(a.screw_ie8&&e instanceof tb)return void c.push(e.definition())});this.walk(d),c.forEach(function(b){b.mangle(a)}),a.cache&&(a.cache.cname=this.cname)}),xa.DEFMETHOD("compute_char_frequency",function(a){a=this._default_mangler_options(a);var b=new D(function(b){b instanceof yb?ec.consider(b.print_to_string()):b instanceof Ea?ec.consider("return"):b instanceof Fa?ec.consider("throw"):b instanceof Ia?ec.consider("continue"):b instanceof Ha?ec.consider("break"):b instanceof ha?ec.consider("debugger"):b instanceof ia?ec.consider(b.value):b instanceof sa?ec.consider("while"):b instanceof ra?ec.consider("do while"):b instanceof Ja?(ec.consider("if"),
+b.alternative&&ec.consider("else")):b instanceof Sa?ec.consider("var"):b instanceof Ta?ec.consider("const"):b instanceof ya?ec.consider("function"):b instanceof ta?ec.consider("for"):b instanceof ua?ec.consider("for in"):b instanceof Ka?ec.consider("switch"):b instanceof Na?ec.consider("case"):b instanceof Ma?ec.consider("default"):b instanceof va?ec.consider("with"):b instanceof jb?ec.consider("set"+b.key):b instanceof kb?ec.consider("get"+b.key):b instanceof ib?ec.consider(b.key):b instanceof Wa?ec.consider("new"):b instanceof xb?ec.consider("this"):b instanceof Oa?ec.consider("try"):b instanceof Pa?ec.consider("catch"):b instanceof Qa?ec.consider("finally"):b instanceof lb&&b.unmangleable(a)?ec.consider(b.name):b instanceof _a||b instanceof cb?ec.consider(b.operator):b instanceof Za&&ec.consider(b.property)});this.walk(b),ec.sort()});var ec=function(){function a(){d=Object.create(null),c=e.split("").map(function(a){return a.charCodeAt(0)}),c.forEach(function(a){d[a]=0})}function b(a){var b="",d=54;a++;do{a--,b+=String.fromCharCode(c[a%d]),a=Math.floor(a/d),d=64}while(a>0);return b}var c,d,e="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_0123456789";return b.consider=function(a){for(var b=a.length;--b>=0;){var c=a.charCodeAt(b);c in d&&++d[c]}},b.sort=function(){c=t(c,function(a,b){return F(a)&&!F(b)?1:F(b)&&!F(a)?-1:d[b]-d[a]})},b.reset=a,a(),b.get=function(){return c},b.freq=function(){return d},b}();xa.DEFMETHOD("scope_warnings",function(a){a=l(a,{undeclared:!1,unreferenced:!0,assign_to_global:!0,func_arguments:!0,nested_defuns:!0,eval:!0});var b=new D(function(c){if(a.undeclared&&c instanceof vb&&c.undeclared()&&fa.warn("Undeclared symbol: {name} [{file}:{line},{col}]",{name:c.name,file:c.start.file,line:c.start.line,col:c.start.col}),a.assign_to_global){var d=null;c instanceof eb&&c.left instanceof vb?d=c.left:c instanceof ua&&c.init instanceof vb&&(d=c.init),d&&(d.undeclared()||d.global()&&d.scope!==d.definition().scope)&&fa.warn("{msg}: {name} [{file}:{line},{col}]",{msg:d.undeclared()?"Accidental global?":"Assignment to global",name:d.name,file:d.start.file,line:d.start.line,col:d.start.col})}a.eval&&c instanceof vb&&c.undeclared()&&"eval"==c.name&&fa.warn("Eval is used [{file}:{line},{col}]",c.start),a.unreferenced&&(c instanceof nb||c instanceof ub)&&!(c instanceof tb)&&c.unreferenced()&&fa.warn("{type} {name} is declared but not referenced [{file}:{line},{col}]",{type:c instanceof ub?"Label":"Symbol",name:c.name,file:c.start.file,line:c.start.line,col:c.start.col}),a.func_arguments&&c instanceof ya&&c.uses_arguments&&fa.warn("arguments used in function {name} [{file}:{line},{col}]",{name:c.name?c.name.name:"anonymous",file:c.start.file,line:c.start.line,col:c.start.col}),a.nested_defuns&&c instanceof Ba&&!(b.parent()instanceof wa)&&fa.warn('Function {name} declared in nested statement "{type}" [{file}:{line},{col}]',{name:c.name.name,type:b.parent().TYPE,file:c.start.file,line:c.start.line,col:c.start.col})});this.walk(b)});var fc=/^$|[;{][\s\n]*$/;!function(){function a(a,b){a.DEFMETHOD("_codegen",b)}function b(a,c){Array.isArray(a)?a.forEach(function(a){b(a,c)}):a.DEFMETHOD("needs_parens",c)}function c(a,b,c,d){var e=a.length-1;q=d,a.forEach(function(a,d){q!==!0||a instanceof ia||a instanceof ma||a instanceof ja&&a.body instanceof zb||(q=!1),a instanceof ma||(c.indent(),a.print(c),d==e&&b||(c.newline(),b&&c.newline())),q===!0&&a instanceof ja&&a.body instanceof zb&&(q=!1)}),q=!1}function d(a,b,d){a.length>0?b.with_block(function(){c(a,!1,b,d)}):b.print("{}")}function e(a,b){var c=a.body;if(b.option("bracketize")||!b.option("screw_ie8")&&c instanceof ra)return l(c,b);if(!c)return b.force_semicolon();for(;;)if(c instanceof Ja){if(!c.alternative)return void l(a.body,b);c=c.alternative}else{if(!(c instanceof na))break;c=c.body}h(a.body,b)}function f(a,b,c){if(c)try{a.walk(new D(function(a){if(a instanceof cb&&"in"==a.operator)throw b})),a.print(b)}catch(c){if(c!==b)throw c;a.print(b,!0)}else a.print(b)}function g(a){return[92,47,46,43,42,63,40,41,91,93,123,125,36,94,58,124,33,10,13,0,65279,8232,8233].indexOf(a)<0}function h(a,b){b.option("bracketize")?l(a,b):!a||a instanceof ma?b.force_semicolon():a.print(b)}function i(a,b){return a.args.length>0||b.option("beautify")}function j(a){for(var b=a[0],c=b.length,d=1;d<a.length;++d)a[d].length<c&&(b=a[d],c=b.length);return b}function k(a){var b,c=a.toString(10),d=[c.replace(/^0\./,".").replace("e+","e")];return Math.floor(a)===a?(a>=0?d.push("0x"+a.toString(16).toLowerCase(),"0"+a.toString(8)):d.push("-0x"+(-a).toString(16).toLowerCase(),"-0"+(-a).toString(8)),(b=/^(.*?)(0+)$/.exec(a))&&d.push(b[1]+"e"+b[2].length)):(b=/^0?\.(0+)(.*)$/.exec(a))&&d.push(b[2]+"e-"+(b[1].length+b[2].length),c.substr(c.indexOf("."))),j(d)}function l(a,b){!a||a instanceof ma?b.print("{}"):a instanceof la?a.print(b):b.with_block(function(){b.indent(),a.print(b),b.newline()})}function m(a,b){a.DEFMETHOD("add_source_map",function(a){b(this,a)})}function o(a,b){b.add_mapping(a.start)}var p=!1,q=!1;fa.DEFMETHOD("print",function(a,b){function c(){d.add_comments(a),d.add_source_map(a),e(d,a)}var d=this,e=d._codegen,f=p;d instanceof ia&&"use asm"==d.value&&a.parent()instanceof wa&&(p=!0),a.push_node(d),b||d.needs_parens(a)?a.with_parens(c):c(),a.pop_node(),d instanceof wa&&(p=f)}),fa.DEFMETHOD("print_to_string",function(a){var b=X(a);return a||(b._readonly=!0),this.print(b),b.get()}),fa.DEFMETHOD("add_comments",function(a){if(!a._readonly){var b=this,c=b.start;if(c&&!c._comments_dumped){c._comments_dumped=!0;var d=c.comments_before||[];if(b instanceof Da&&b.value&&b.value.walk(new D(function(a){if(a.start&&a.start.comments_before&&(d=d.concat(a.start.comments_before),a.start.comments_before=[]),a instanceof Aa||a instanceof fb||a instanceof gb)return!0})),d.length>0&&0==a.pos()){a.option("shebang")&&"comment5"==d[0].type&&(a.print("#!"+d.shift().value+"\n"),a.indent());var e=a.option("preamble");e&&a.print(e.replace(/\r\n?|[\n\u2028\u2029]|\s*$/g,"\n"))}d=d.filter(a.comment_filter,b),!a.option("beautify")&&d.length>0&&/comment[134]/.test(d[0].type)&&0!==a.col()&&d[0].nlb&&a.print("\n"),d.forEach(function(b){/comment[134]/.test(b.type)?(a.print("//"+b.value+"\n"),a.indent()):"comment2"==b.type&&(a.print("/*"+b.value+"*/"),c.nlb?(a.print("\n"),a.indent()):a.space())})}}}),b(fa,function(){return!1}),b(Aa,function(a){if(A(a))return!0;if(a.option("wrap_iife")){var b=a.parent();return b instanceof Va&&b.expression===this}return!1}),b(gb,function(a){return A(a)}),b([_a,Fb],function(a){var b=a.parent();return b instanceof Ya&&b.expression===this||b instanceof Va&&b.expression===this}),b(Xa,function(a){var b=a.parent();return b instanceof Va||b instanceof _a||b instanceof cb||b instanceof Ua||b instanceof Ya||b instanceof fb||b instanceof hb||b instanceof db}),b(cb,function(a){var b=a.parent();if(b instanceof Va&&b.expression===this)return!0;if(b instanceof _a)return!0;if(b instanceof Ya&&b.expression===this)return!0;if(b instanceof cb){var c=b.operator,d=bc[c],e=this.operator,f=bc[e];if(d>f||d==f&&this===b.right)return!0}}),b(Ya,function(a){var b=a.parent();if(b instanceof Wa&&b.expression===this)try{this.walk(new D(function(a){if(a instanceof Va)throw b}))}catch(a){if(a!==b)throw a;return!0}}),b(Va,function(a){var b,c=a.parent();return c instanceof Wa&&c.expression===this||this.expression instanceof Aa&&c instanceof Ya&&c.expression===this&&(b=a.parent(1))instanceof eb&&b.left===c}),b(Wa,function(a){var b=a.parent();if(!i(this,a)&&(b instanceof Ya||b instanceof Va&&b.expression===this))return!0}),b(Ab,function(a){var b=a.parent();if(b instanceof Ya&&b.expression===this){var c=this.getValue();if(c<0||/^0/.test(k(c)))return!0}}),b([eb,db],function(a){var b=a.parent();return b instanceof _a||(b instanceof cb&&!(b instanceof eb)||(b instanceof Va&&b.expression===this||(b instanceof db&&b.condition===this||(b instanceof Ya&&b.expression===this||void 0))))}),a(ia,function(a,b){b.print_string(a.value,a.quote),b.semicolon()}),a(ha,function(a,b){b.print("debugger"),b.semicolon()}),na.DEFMETHOD("_do_print_body",function(a){h(this.body,a)}),a(ga,function(a,b){a.body.print(b),b.semicolon()}),a(xa,function(a,b){c(a.body,!0,b,!0),b.print("")}),a(oa,function(a,b){a.label.print(b),b.colon(),a.body.print(b)}),a(ja,function(a,b){a.body.print(b),b.semicolon()}),a(la,function(a,b){d(a.body,b)}),a(ma,function(a,b){b.semicolon()}),a(ra,function(a,b){b.print("do"),b.space(),l(a.body,b),b.space(),b.print("while"),b.space(),b.with_parens(function(){a.condition.print(b)}),b.semicolon()}),a(sa,function(a,b){b.print("while"),b.space(),b.with_parens(function(){a.condition.print(b)}),b.space(),a._do_print_body(b)}),a(ta,function(a,b){b.print("for"),b.space(),b.with_parens(function(){!a.init||a.init instanceof ma?b.print(";"):(a.init instanceof Ra?a.init.print(b):f(a.init,b,!0),b.print(";"),b.space()),a.condition?(a.condition.print(b),b.print(";"),b.space()):b.print(";"),a.step&&a.step.print(b)}),b.space(),a._do_print_body(b)}),a(ua,function(a,b){b.print("for"),b.space(),b.with_parens(function(){a.init.print(b),b.space(),b.print("in"),b.space(),a.object.print(b)}),b.space(),a._do_print_body(b)}),a(va,function(a,b){b.print("with"),b.space(),b.with_parens(function(){a.expression.print(b)}),b.space(),a._do_print_body(b)}),ya.DEFMETHOD("_do_print",function(a,b){var c=this;b||a.print("function"),c.name&&(a.space(),c.name.print(a)),a.with_parens(function(){c.argnames.forEach(function(b,c){c&&a.comma(),b.print(a)})}),a.space(),d(c.body,a,!0)}),a(ya,function(a,b){a._do_print(b)}),Da.DEFMETHOD("_do_print",function(a,b){a.print(b),this.value&&(a.space(),this.value.print(a)),a.semicolon()}),a(Ea,function(a,b){a._do_print(b,"return")}),a(Fa,function(a,b){a._do_print(b,"throw")}),Ga.DEFMETHOD("_do_print",function(a,b){a.print(b),this.label&&(a.space(),this.label.print(a)),a.semicolon()}),a(Ha,function(a,b){a._do_print(b,"break")}),a(Ia,function(a,b){a._do_print(b,"continue")}),a(Ja,function(a,b){b.print("if"),b.space(),b.with_parens(function(){a.condition.print(b)}),b.space(),a.alternative?(e(a,b),b.space(),b.print("else"),b.space(),a.alternative instanceof Ja?a.alternative.print(b):h(a.alternative,b)):a._do_print_body(b)}),a(Ka,function(a,b){b.print("switch"),b.space(),b.with_parens(function(){a.expression.print(b)}),b.space(),a.body.length>0?b.with_block(function(){a.body.forEach(function(a,c){c&&b.newline(),b.indent(!0),a.print(b)})}):b.print("{}")}),La.DEFMETHOD("_do_print_body",function(a){this.body.length>0&&(a.newline(),this.body.forEach(function(b){a.indent(),b.print(a),a.newline()}))}),a(Ma,function(a,b){b.print("default:"),a._do_print_body(b)}),a(Na,function(a,b){b.print("case"),b.space(),a.expression.print(b),b.print(":"),a._do_print_body(b)}),a(Oa,function(a,b){b.print("try"),b.space(),d(a.body,b),a.bcatch&&(b.space(),a.bcatch.print(b)),a.bfinally&&(b.space(),a.bfinally.print(b))}),a(Pa,function(a,b){b.print("catch"),b.space(),b.with_parens(function(){a.argname.print(b)}),b.space(),d(a.body,b)}),a(Qa,function(a,b){b.print("finally"),b.space(),d(a.body,b)}),Ra.DEFMETHOD("_do_print",function(a,b){a.print(b),a.space(),this.definitions.forEach(function(b,c){c&&a.comma(),b.print(a)});var c=a.parent();(c instanceof ta||c instanceof ua)&&c.init===this||a.semicolon()}),a(Sa,function(a,b){a._do_print(b,"var")}),a(Ta,function(a,b){a._do_print(b,"const")}),a(Ua,function(a,b){if(a.name.print(b),a.value){b.space(),b.print("="),b.space();var c=b.parent(1),d=c instanceof ta||c instanceof ua;f(a.value,b,d)}}),a(Va,function(a,b){a.expression.print(b),a instanceof Wa&&!i(a,b)||b.with_parens(function(){a.args.forEach(function(a,c){c&&b.comma(),a.print(b)})})}),a(Wa,function(a,b){b.print("new"),b.space(),Va.prototype._codegen(a,b)}),Xa.DEFMETHOD("_do_print",function(a){this.car.print(a),this.cdr&&(a.comma(),a.should_break()&&(a.newline(),a.indent()),this.cdr.print(a))}),a(Xa,function(a,b){a._do_print(b)}),a(Za,function(a,b){var c=a.expression;c.print(b),c instanceof Ab&&c.getValue()>=0&&(/[xa-f.)]/i.test(b.last())||b.print(".")),b.print("."),b.add_mapping(a.end),b.print_name(a.property)}),a($a,function(a,b){a.expression.print(b),b.print("["),a.property.print(b),b.print("]")}),a(ab,function(a,b){var c=a.operator;b.print(c),(/^[a-z]/i.test(c)||/[+-]$/.test(c)&&a.expression instanceof ab&&/^[+-]/.test(a.expression.operator))&&b.space(),a.expression.print(b)}),a(bb,function(a,b){a.expression.print(b),b.print(a.operator)}),a(cb,function(a,b){var c=a.operator;a.left.print(b),">"==c[0]&&a.left instanceof bb&&"--"==a.left.operator?b.print(" "):b.space(),b.print(c),("<"==c||"<<"==c)&&a.right instanceof ab&&"!"==a.right.operator&&a.right.expression instanceof ab&&"--"==a.right.expression.operator?b.print(" "):b.space(),a.right.print(b)}),a(db,function(a,b){a.condition.print(b),b.space(),b.print("?"),b.space(),a.consequent.print(b),b.space(),b.colon(),a.alternative.print(b)}),a(fb,function(a,b){b.with_square(function(){var c=a.elements,d=c.length;d>0&&b.space(),c.forEach(function(a,c){c&&b.comma(),a.print(b),c===d-1&&a instanceof Gb&&b.comma()}),d>0&&b.space()})}),a(gb,function(a,b){a.properties.length>0?b.with_block(function(){a.properties.forEach(function(a,c){c&&(b.print(","),b.newline()),b.indent(),a.print(b)}),b.newline()}):b.print("{}")}),a(ib,function(a,b){var c=a.key,d=a.quote;b.option("quote_keys")?b.print_string(c+""):("number"==typeof c||!b.option("beautify")&&+c+""==c)&&parseFloat(c)>=0?b.print(k(c)):(Nb(c)?b.option("screw_ie8"):N(c))?d&&b.option("keep_quoted_props")?b.print_string(c,d):b.print_name(c):b.print_string(c,d),b.colon(),a.value.print(b)}),a(jb,function(a,b){b.print("set"),b.space(),a.key.print(b),a.value._do_print(b,!0)}),a(kb,function(a,b){b.print("get"),b.space(),a.key.print(b),a.value._do_print(b,!0)}),a(lb,function(a,b){var c=a.definition();b.print_name(c?c.mangled_name||c.name:a.name)}),a(Fb,function(a,b){b.print("void 0")}),a(Gb,n),a(Hb,function(a,b){b.print("Infinity")}),a(Eb,function(a,b){b.print("NaN")}),a(xb,function(a,b){b.print("this")}),a(yb,function(a,b){b.print(a.getValue())}),a(zb,function(a,b){b.print_string(a.getValue(),a.quote,q)}),a(Ab,function(a,b){p&&a.start&&null!=a.start.raw?b.print(a.start.raw):b.print(k(a.getValue()))}),a(Bb,function(a,b){var c=a.getValue().toString();b.option("ascii_only")?c=b.to_ascii(c):b.option("unescape_regexps")&&(c=c.split("\\\\").map(function(a){return a.replace(/\\u[0-9a-fA-F]{4}|\\x[0-9a-fA-F]{2}/g,function(a){var b=parseInt(a.substr(2),16);return g(b)?String.fromCharCode(b):a})}).join("\\\\")),b.print(c);var d=b.parent();d instanceof cb&&/^in/.test(d.operator)&&d.left===a&&b.print(" ")}),m(fa,n),m(ia,o),m(ha,o),m(lb,o),m(Ca,o),m(na,o),m(oa,n),m(ya,o),m(Ka,o),m(La,o),m(la,o),m(xa,n),m(Wa,o),m(Oa,o),m(Pa,o),m(Qa,o),m(Ra,o),m(yb,o),m(jb,function(a,b){b.add_mapping(a.start,a.key.name)}),m(kb,function(a,b){b.add_mapping(a.start,a.key.name)}),m(hb,function(a,b){b.add_mapping(a.start,a.key)})}(),Y.prototype=new U,m(Y.prototype,{option:function(a){return this.options[a]},compress:function(a){this.option("expression")&&(a=a.process_expression(!0));for(var b=+this.options.passes||1,c=0;c<b&&c<3;++c)(c>0||this.option("reduce_vars"))&&a.reset_opt_flags(this,!0),a=a.transform(this);return this.option("expression")&&(a=a.process_expression(!1)),a},warn:function(a,b){if(this.options.warnings){var c=r(a,b);c in this.warnings_produced||(this.warnings_produced[c]=!0,fa.warn.apply(fa,arguments))}},clear_warnings:function(){this.warnings_produced={}},before:function(a,b,c){if(a._squeezed)return a;var d=!1;return a instanceof wa&&(a=a.hoist_declarations(this),d=!0),b(a,this),a=a.optimize(this),d&&a instanceof wa&&(a.drop_unused(this),b(a,this)),a._squeezed=!0,a}}),function(){function a(a,b){a.DEFMETHOD("optimize",function(a){var c=this;if(c._optimized)return c;if(a.has_directive("use asm"))return c;var d=b(c,a);return d._optimized=!0,d===c?d:d.transform(a)})}function b(a,b,c){return c||(c={}),b&&(c.start||(c.start=b.start),c.end||(c.end=b.end)),new a(c)}function c(a,c,d){switch(typeof c){case"string":return b(zb,d,{value:c});case"number":return isNaN(c)?b(Eb,d):1/c<0?b(ab,d,{operator:"-",expression:b(Ab,d,{value:-c})}):b(Ab,d,{value:c});case"boolean":return b(c?Kb:Jb,d).optimize(a);case"undefined":return b(Fb,d).transform(a);default:if(null===c)return b(Db,d,{value:null});if(c instanceof RegExp)return b(Bb,d,{value:c});throw new Error(r("Can't handle constant of type: {type}",{type:typeof c}))}}function d(a,c,d){return a instanceof Va&&a.expression===c&&(d instanceof Ya||d instanceof vb&&"eval"===d.name)?b(Xa,c,{car:b(Ab,c,{value:0}),cdr:d}):d}function e(a){if(null===a)return[];if(a instanceof la)return a.body;if(a instanceof ma)return[];if(a instanceof ga)return[a];throw new Error("Can't convert thing to statement array")}function f(a){return null===a||(a instanceof ma||a instanceof la&&0==a.body.length)}function i(a){return a instanceof Ka?a:(a instanceof ta||a instanceof ua||a instanceof qa)&&a.body instanceof la?a.body:a}function j(a){return a.body instanceof ab&&I(a.body.operator)?a.body.expression:a.body}function k(a){return a instanceof Va&&!(a instanceof Wa)&&(a.expression instanceof Aa||k(a.expression))}function l(a,c){function f(a,c){function e(a,b){return a instanceof vb&&v(a,b)}function g(f,g,j){if(e(f,g))return f;var n=d(g,f,u.value);return u.value=null,o.splice(t,1),0===o.length&&(a[m]=b(ma,h),i=!0),k.reset_opt_flags(c),c.warn("Collapsing "+(j?"constant":"variable")+" "+w+" [{file}:{line},{col}]",f.start),l=!0,n}for(var h=c.self(),i=!1,j=a.length;--j>=0;){var k=a[j];if(!(k instanceof Ra)){if([k,k.body,k.alternative,k.bcatch,k.bfinally].forEach(function(a){a&&a.body&&f(a.body,c)}),j<=0)break;var m=j-1,n=a[m];if(n instanceof Ra){var o=n.definitions;if(null!=o)for(var p={},q=!1,r=!1,s={},t=o.length;--t>=0;){var u=o[t];if(null==u.value)break;var w=u.name.name;if(!w||!w.length)break;if(w in p)break;p[w]=!0;var x=h.find_variable&&h.find_variable(w);if(x&&x.references&&1===x.references.length&&"arguments"!=w){var y=x.references[0];if(y.scope.uses_eval||y.scope.uses_with)break;if(u.value.is_constant()){var z=new U(function(a){var b=z.parent();return b instanceof pa&&(b.condition===a||b.init===a)?a:a===y?g(a,b,!0):void 0});k.transform(z)}else if(!(q|=r))if(y.scope===h){var A=new D(function(a){a instanceof vb&&e(a,A.parent())&&(s[a.name]=r=!0)});u.value.walk(A);var B=!1,C=new U(function(a){if(B)return a;var b=C.parent();return a instanceof ya||a instanceof Oa||a instanceof va||a instanceof Na||a instanceof pa||b instanceof Ja&&a!==b.condition||b instanceof db&&a!==b.condition||b instanceof cb&&("&&"==b.operator||"||"==b.operator)&&a===b.right||b instanceof Ka&&a!==b.expression?(q=B=!0,a):void 0},function(a){return B?a:a===y?(B=!0,g(a,C.parent(),!1)):(q|=a.has_side_effects(c))?(B=!0,a):r&&a instanceof vb&&a.name in s?(q=!0,B=!0,a):void 0});k.transform(C)}else q|=u.value.has_side_effects(c)}else q=!0}}}}if(i)for(var E=a.length;--E>=0;)a.length>1&&a[E]instanceof ma&&a.splice(E,1);return a}function g(a){var b=[];return a.reduce(function(a,c){return c instanceof la?(l=!0,a.push.apply(a,g(c.body))):c instanceof ma?l=!0:c instanceof ia?b.indexOf(c.value)<0?(a.push(c),b.push(c.value)):l=!0:a.push(c),a},[])}function h(a){for(var b=0,c=0;c<a.length;++c){var d=a[c];d instanceof Xa?b+=d.len():b++}return b}function k(a,c){function d(a){e.pop();var b=f.body;return b instanceof Xa?b.add(a):b=Xa.cons(b,a),b.transform(c)}var e=[],f=null;return a.forEach(function(a){if(f)if(a instanceof ta){var c={};try{f.body.walk(new D(function(a){if(a instanceof cb&&"in"==a.operator)throw c})),!a.init||a.init instanceof Ra?a.init||(a.init=j(f),e.pop()):a.init=d(a.init)}catch(a){if(a!==c)throw a}}else a instanceof Ja?a.condition=d(a.condition):a instanceof va?a.expression=d(a.expression):a instanceof Da&&a.value?a.value=d(a.value):a instanceof Da?a.value=d(b(Fb,a)):a instanceof Ka&&(a.expression=d(a.expression));e.push(a),f=a instanceof ja?a:null}),e}var l,n=10;do{l=!1,c.option("angular")&&(a=function(a){function d(a){return/@ngInject/.test(a.value)}function e(a){return a.argnames.map(function(a){return b(zb,a,{value:a.name})})}function f(a,c){return b(fb,a,{elements:c})}function g(a,c){return b(ja,a,{body:b(eb,a,{operator:"=",left:b(Za,c,{expression:b(vb,c,c),property:"$inject"}),right:f(a,e(a))})})}function h(a){a&&a.args&&(a.args.forEach(function(a,b,c){var g=a.start.comments_before;a instanceof ya&&g.length&&d(g[0])&&(c[b]=f(a,e(a).concat(a)))}),a.expression&&a.expression.expression&&h(a.expression.expression))}return a.reduce(function(a,b){if(a.push(b),b.body&&b.body.args)h(b.body);else{var e=b.start,f=e.comments_before;if(f&&f.length>0){d(f.pop())&&(b instanceof Ba?a.push(g(b,b.name)):b instanceof Ra?b.definitions.forEach(function(b){b.value&&b.value instanceof ya&&a.push(g(b.value,b.name))}):c.warn("Unknown statement marked with @ngInject [{file}:{line},{col}]",e))}}return a},[])}(a)),a=g(a),c.option("dead_code")&&(a=function(a,b){var c=!1,d=a.length,e=b.self();return a=a.reduce(function(a,d){if(c)q(b,d,a);else{if(d instanceof Ga){var f=b.loopcontrol_target(d.label);d instanceof Ha&&f instanceof la&&i(f)===e||d instanceof Ia&&i(f)===e?d.label&&s(d.label.thedef.references,d):a.push(d)}else a.push(d);E(d)&&(c=!0)}return a},[]),l=a.length!=d,a}(a,c)),c.option("if_return")&&(a=function(a,c){var d=c.self(),f=function(a){for(var b=0,c=a.length;--c>=0;){var d=a[c];if(d instanceof Ja&&d.body instanceof Ea&&++b>1)return!0}return!1}(a),g=d instanceof ya,h=[];a:for(var j=a.length;--j>=0;){var k=a[j];switch(!0){case g&&k instanceof Ea&&!k.value&&0==h.length:l=!0;continue a;case k instanceof Ja:if(k.body instanceof Ea){if((g&&0==h.length||h[0]instanceof Ea&&!h[0].value)&&!k.body.value&&!k.alternative){l=!0;var n=b(ja,k.condition,{body:k.condition});h.unshift(n);continue a}if(h[0]instanceof Ea&&k.body.value&&h[0].value&&!k.alternative){l=!0,k=k.clone(),k.alternative=h[0],h[0]=k.transform(c);continue a}if(f&&(0==h.length||h[0]instanceof Ea)&&k.body.value&&!k.alternative&&g){l=!0,k=k.clone(),k.alternative=h[0]||b(Ea,k,{value:null}),h[0]=k.transform(c);continue a}if(!k.body.value&&g){l=!0,k=k.clone(),k.condition=k.condition.negate(c);var o=e(k.alternative).concat(h),p=m(o);k.body=b(la,k,{body:o}),k.alternative=null,h=p.concat([k.transform(c)]);continue a}if(c.option("sequences")&&j>0&&a[j-1]instanceof Ja&&a[j-1].body instanceof Ea&&1==h.length&&g&&h[0]instanceof ja&&!k.alternative){l=!0,h.push(b(Ea,h[0],{value:null}).transform(c)),h.unshift(k);continue a}}var q=E(k.body),r=q instanceof Ga?c.loopcontrol_target(q.label):null;if(q&&(q instanceof Ea&&!q.value&&g||q instanceof Ia&&d===i(r)||q instanceof Ha&&r instanceof la&&d===r)){q.label&&s(q.label.thedef.references,q),l=!0;var o=e(k.body).slice(0,-1);k=k.clone(),k.condition=k.condition.negate(c),k.body=b(la,k,{body:e(k.alternative).concat(h)}),k.alternative=b(la,k,{body:o}),h=[k.transform(c)];continue a}var q=E(k.alternative),r=q instanceof Ga?c.loopcontrol_target(q.label):null;if(q&&(q instanceof Ea&&!q.value&&g||q instanceof Ia&&d===i(r)||q instanceof Ha&&r instanceof la&&d===r)){q.label&&s(q.label.thedef.references,q),l=!0,k=k.clone(),k.body=b(la,k.body,{body:e(k.body).concat(h)}),k.alternative=b(la,k.alternative,{body:e(k.alternative).slice(0,-1)}),h=[k.transform(c)];continue a}h.unshift(k);break;default:h.unshift(k)}}return h}(a,c)),c.sequences_limit>0&&(a=function(a,c){function d(){e=Xa.from_array(e),e&&f.push(b(ja,e,{body:e})),e=[]}if(a.length<2)return a;var e=[],f=[];return a.forEach(function(a){a instanceof ja?(h(e)>=c.sequences_limit&&d(),e.push(e.length>0?j(a):a.body)):(d(),f.push(a))}),d(),f=k(f,c),l=f.length!=a.length,f}(a,c)),c.option("join_vars")&&(a=function(a,b){var c=null;return a.reduce(function(a,b){return b instanceof Ra&&c&&c.TYPE==b.TYPE?(c.definitions=c.definitions.concat(b.definitions),l=!0):b instanceof ta&&c instanceof Sa&&(!b.init||b.init.TYPE==c.TYPE)?(l=!0,a.pop(),b.init?b.init.definitions=c.definitions.concat(b.init.definitions):b.init=c,a.push(b),c=b):(c=b,a.push(b)),a},[])}(a,c)),c.option("collapse_vars")&&(a=f(a,c))}while(l&&n-- >0);return a}function m(a){for(var b=[],c=a.length-1;c>=0;--c){var d=a[c];d instanceof Ba&&(a.splice(c,1),b.unshift(d))}return b}function q(a,b,c){b instanceof Ba||a.warn("Dropping unreachable code [{file}:{line},{col}]",b.start),b.walk(new D(function(b){return b instanceof Ra?(a.warn("Declarations in unreachable code! [{file}:{line},{col}]",b.start),b.remove_initializers(),c.push(b),!0):b instanceof Ba?(c.push(b),!0):b instanceof wa||void 0}))}function u(a){return a instanceof Fb||a.is_undefined}function v(a,b){return b instanceof _a&&("++"==b.operator||"--"==b.operator)||b instanceof eb&&b.left===a}function B(a,b){return a.print_to_string().length>b.print_to_string().length?b:a}function C(a,c){return B(b(ja,a,{body:a}),b(ja,c,{body:c})).body}function E(a){return a&&a.aborts()}function F(a,c){function d(d){d=e(d),a.body instanceof la?(a.body=a.body.clone(),a.body.body=d.concat(a.body.body.slice(1)),a.body=a.body.transform(c)):a.body=b(la,a.body,{body:d}).transform(c),F(a,c)}var f=a.body instanceof la?a.body.body[0]:a.body;f instanceof Ja&&(f.body instanceof Ha&&c.loopcontrol_target(f.body.label)===a?(a.condition?a.condition=b(cb,a.condition,{left:a.condition,operator:"&&",right:f.condition.negate(c)}):a.condition=f.condition.negate(c),d(f.alternative)):f.alternative instanceof Ha&&c.loopcontrol_target(f.alternative.label)===a&&(a.condition?a.condition=b(cb,a.condition,{left:a.condition,operator:"&&",right:f.condition}):a.condition=f.condition,d(f.body)))}function G(a,b){var c=b.option("pure_getters");b.options.pure_getters=!1;var d=a.has_side_effects(b);return b.options.pure_getters=c,d}function H(a,c){if(c.option("booleans")&&c.in_boolean_context()){return(A(c)?C:B)(a,b(Xa,a,{car:a,cdr:b(Kb,a)}).optimize(c))}return a}a(fa,function(a,b){return a}),fa.DEFMETHOD("equivalent_to",function(a){return this.print_to_string()==a.print_to_string()}),fa.DEFMETHOD("process_expression",function(a){var c=this,d=new U(function(e){if(a&&e instanceof ja)return b(Ea,e,{value:e.body});if(!a&&e instanceof Ea)return b(ja,e,{body:e.value||b(Fb,e)});if(e instanceof ya&&e!==c)return e;if(e instanceof ka){var f=e.body.length-1;f>=0&&(e.body[f]=e.body[f].transform(d))}return e instanceof Ja&&(e.body=e.body.transform(d),e.alternative&&(e.alternative=e.alternative.transform(d))),e instanceof va&&(e.body=e.body.transform(d)),e});return c.transform(d)}),fa.DEFMETHOD("reset_opt_flags",function(a,c){function d(a){m[m.length-1][a.id]=!0}function e(a){for(var b=m.length,c=a.id;--b>=0;)if(m[b][c])return!0}function f(){m.push(Object.create(null))}function g(){m.pop()}function h(a){k||!a.global||a.orig[0]instanceof pb?a.fixed=void 0:a.fixed=!1,a.references=[],a.should_replace=void 0}function i(a,b,c){var d=o.parent(b);return!!(v(a,d)||!c&&d instanceof Va&&d.expression===a)||(d instanceof Ya&&d.expression===a?!c&&i(d,b+1):void 0)}var j=c&&a.option("reduce_vars"),k=a.option("toplevel"),l=!a.option("screw_ie8"),m=[];f();var n=new D(function(a){if(a instanceof lb){var b=a.definition();a instanceof vb&&b.references.push(a),b.fixed=!1}}),o=new D(function(a,c){if(a instanceof ia||a instanceof yb||(a._squeezed=!1,a._optimized=!1),j){if(a instanceof xa&&a.globals.each(h),a instanceof wa&&a.variables.each(h),a instanceof vb){var p=a.definition();p.references.push(a),p.fixed&&e(p)&&!i(a,0,p.fixed instanceof ya)||(p.fixed=!1)}if(l&&a instanceof tb&&(a.definition().fixed=!1),a instanceof Ua){var p=a.name.definition();void 0===p.fixed?(p.fixed=a.value||b(Fb,a),d(p)):p.fixed=!1}if(a instanceof Ba){var p=a.name.definition();!k&&p.global||e(p)?p.fixed=!1:(p.fixed=a,d(p));var q=m;return m=[],f(),c(),m=q,!0}var r;if(a instanceof Aa&&!a.name&&(r=o.parent())instanceof Va&&r.expression===a&&a.argnames.forEach(function(a,c){var e=a.definition();e.fixed=r.args[c]||b(Fb,r),d(e)}),a instanceof Ja||a instanceof qa)return a.condition.walk(o),f(),a.body.walk(o),g(),a.alternative&&(f(),a.alternative.walk(o),g()),!0;if(a instanceof oa)return f(),a.body.walk(o),g(),!0;if(a instanceof ta)return a.init&&a.init.walk(o),f(),a.condition&&a.condition.walk(o),a.body.walk(o),a.step&&a.step.walk(o),g(),!0;if(a instanceof ua)return a.init.walk(n),a.object.walk(o),f(),a.body.walk(o),g(),!0;if(a instanceof Pa)return f(),c(),g(),!0}});this.walk(o)});var I=w("! ~ + - void typeof");!function(a){var b=["!","delete"],c=["in","instanceof","==","!=","===","!==","<","<=",">=",">"];a(fa,o),a(ab,function(){return g(this.operator,b)}),a(cb,function(){return g(this.operator,c)||("&&"==this.operator||"||"==this.operator)&&this.left.is_boolean()&&this.right.is_boolean()}),a(db,function(){return this.consequent.is_boolean()&&this.alternative.is_boolean()}),a(eb,function(){return"="==this.operator&&this.right.is_boolean()}),a(Xa,function(){return this.cdr.is_boolean()}),a(Kb,p),a(Jb,p)}(function(a,b){a.DEFMETHOD("is_boolean",b)}),function(a){a(fa,o),a(Ab,p);var b=w("+ - ~ ++ --");a(_a,function(){return b(this.operator)});var c=w("- * / % & | ^ << >> >>>");a(cb,function(a){return c(this.operator)||"+"==this.operator&&this.left.is_number(a)&&this.right.is_number(a)});var d=w("-= *= /= %= &= |= ^= <<= >>= >>>=");a(eb,function(a){return d(this.operator)||this.right.is_number(a)}),a(Xa,function(a){return this.cdr.is_number(a)}),a(db,function(a){return this.consequent.is_number(a)&&this.alternative.is_number(a)})}(function(a,b){a.DEFMETHOD("is_number",b)}),function(a){a(fa,o),a(zb,p),a(ab,function(){return"typeof"==this.operator}),a(cb,function(a){return"+"==this.operator&&(this.left.is_string(a)||this.right.is_string(a))}),a(eb,function(a){return("="==this.operator||"+="==this.operator)&&this.right.is_string(a)}),a(Xa,function(a){return this.cdr.is_string(a)}),a(db,function(a){return this.consequent.is_string(a)&&this.alternative.is_string(a)})}(function(a,b){a.DEFMETHOD("is_string",b)}),function(a){function d(a,e,f){if(e instanceof fa)return b(e.CTOR,f,e);if(Array.isArray(e))return b(fb,f,{elements:e.map(function(b){return d(a,b,f)})});if(e&&"object"==typeof e){var g=[];for(var h in e)g.push(b(ib,f,{key:h,value:d(a,e[h],f)}));return b(gb,f,{properties:g})}return c(a,e,f)}fa.DEFMETHOD("resolve_defines",function(a){if(a.option("global_defs")){var b=this._find_defs(a,"");if(b){var c,d=this,e=0;do{c=d,d=a.parent(e++)}while(d instanceof Ya&&d.expression===c);if(!v(c,d))return b;a.warn("global_defs "+this.print_to_string()+" redefined [{file}:{line},{col}]",this.start)}}}),a(fa,n),a(Za,function(a,b){return this.expression._find_defs(a,b+"."+this.property)}),a(vb,function(a,b){if(this.global()){var c,e=a.option("global_defs");if(e&&z(e,c=this.name+b)){var f=d(a,e[c],this),g=a.find_parent(xa);return f.walk(new D(function(a){a instanceof vb&&(a.scope=g,a.thedef=g.def_global(a))})),f}}})}(function(a,b){a.DEFMETHOD("_find_defs",b)}),function(a){function b(a,b){if(!b)throw new Error("Compressor must be passed");return a._eval(b)}fa.DEFMETHOD("evaluate",function(b){if(!b.option("evaluate"))return[this];var d;try{d=this._eval(b)}catch(b){if(b!==a)throw b;return[this]}var e;try{e=c(b,d,this)}catch(a){return[this]}return[B(e,this),d]});var d=w("! ~ - +");fa.DEFMETHOD("is_constant",function(){return this instanceof yb?!(this instanceof Bb):this instanceof ab&&this.expression instanceof yb&&d(this.operator)}),fa.DEFMETHOD("constant_value",function(a){if(this instanceof yb&&!(this instanceof Bb))return this.value;if(this instanceof ab&&this.expression instanceof yb)switch(this.operator){case"!":return!this.expression.value;case"~":return~this.expression.value;case"-":return-this.expression.value;case"+":return+this.expression.value;default:throw new Error(r("Cannot evaluate unary expression {value}",{value:this.print_to_string()}))}var b=this.evaluate(a);if(b.length>1)return b[1];throw new Error(r("Cannot evaluate constant [{file}:{line},{col}]",this.start))}),a(ga,function(){throw new Error(r("Cannot evaluate a statement [{file}:{line},{col}]",this.start))}),a(ya,function(){throw a}),a(fa,function(){
+throw a}),a(yb,function(){return this.getValue()}),a(fb,function(c){if(c.option("unsafe"))return this.elements.map(function(a){return b(a,c)});throw a}),a(gb,function(c){if(c.option("unsafe")){for(var d={},e=0,f=this.properties.length;e<f;e++){var g=this.properties[e],h=g.key;if(h instanceof lb?h=h.name:h instanceof fa&&(h=b(h,c)),"function"==typeof Object.prototype[h])throw a;d[h]=b(g.value,c)}return d}throw a}),a(ab,function(c){var d=this.expression;switch(this.operator){case"!":return!b(d,c);case"typeof":if(d instanceof Aa)return"function";if((d=b(d,c))instanceof RegExp)throw a;return typeof d;case"void":return void b(d,c);case"~":return~b(d,c);case"-":return-b(d,c);case"+":return+b(d,c)}throw a}),a(cb,function(c){var d,e=this.left,f=this.right;switch(this.operator){case"&&":d=b(e,c)&&b(f,c);break;case"||":d=b(e,c)||b(f,c);break;case"|":d=b(e,c)|b(f,c);break;case"&":d=b(e,c)&b(f,c);break;case"^":d=b(e,c)^b(f,c);break;case"+":d=b(e,c)+b(f,c);break;case"*":d=b(e,c)*b(f,c);break;case"/":d=b(e,c)/b(f,c);break;case"%":d=b(e,c)%b(f,c);break;case"-":d=b(e,c)-b(f,c);break;case"<<":d=b(e,c)<<b(f,c);break;case">>":d=b(e,c)>>b(f,c);break;case">>>":d=b(e,c)>>>b(f,c);break;case"==":d=b(e,c)==b(f,c);break;case"===":d=b(e,c)===b(f,c);break;case"!=":d=b(e,c)!=b(f,c);break;case"!==":d=b(e,c)!==b(f,c);break;case"<":d=b(e,c)<b(f,c);break;case"<=":d=b(e,c)<=b(f,c);break;case">":d=b(e,c)>b(f,c);break;case">=":d=b(e,c)>=b(f,c);break;default:throw a}if(isNaN(d)&&c.find_parent(va))throw a;return d}),a(db,function(a){return b(this.condition,a)?b(this.consequent,a):b(this.alternative,a)}),a(vb,function(c){if(this._evaluating)throw a;this._evaluating=!0;try{var d=this.definition();if(c.option("reduce_vars")&&d.fixed)return c.option("unsafe")?(z(d.fixed,"_evaluated")||(d.fixed._evaluated=b(d.fixed,c)),d.fixed._evaluated):b(d.fixed,c)}finally{this._evaluating=!1}throw a}),a(Ya,function(c){if(c.option("unsafe")){var d=this.property;d instanceof fa&&(d=b(d,c));var e=b(this.expression,c);if(e&&z(e,d))return e[d]}throw a})}(function(a,b){a.DEFMETHOD("_eval",b)}),function(a){function c(a){return b(ab,a,{operator:"!",expression:a})}function d(a,d,e){var f=c(a);if(e){var g=b(ja,d,{body:d});return B(f,g)===g?d:f}return B(f,d)}a(fa,function(){return c(this)}),a(ga,function(){throw new Error("Cannot negate a statement")}),a(Aa,function(){return c(this)}),a(ab,function(){return"!"==this.operator?this.expression:c(this)}),a(Xa,function(a){var b=this.clone();return b.cdr=b.cdr.negate(a),b}),a(db,function(a,b){var c=this.clone();return c.consequent=c.consequent.negate(a),c.alternative=c.alternative.negate(a),d(this,c,b)}),a(cb,function(a,b){var e=this.clone(),f=this.operator;if(a.option("unsafe_comps"))switch(f){case"<=":return e.operator=">",e;case"<":return e.operator=">=",e;case">=":return e.operator="<",e;case">":return e.operator="<=",e}switch(f){case"==":return e.operator="!=",e;case"!=":return e.operator="==",e;case"===":return e.operator="!==",e;case"!==":return e.operator="===",e;case"&&":return e.operator="||",e.left=e.left.negate(a,b),e.right=e.right.negate(a),d(this,e,b);case"||":return e.operator="&&",e.left=e.left.negate(a,b),e.right=e.right.negate(a),d(this,e,b)}return c(this)})}(function(a,b){a.DEFMETHOD("negate",function(a,c){return b.call(this,a,c)})}),Va.DEFMETHOD("has_pure_annotation",function(a){if(!a.option("side_effects"))return!1;if(void 0!==this.pure)return this.pure;var b,c,d=!1;return this.start&&(b=this.start.comments_before)&&b.length&&/[@#]__PURE__/.test((c=b[b.length-1]).value)&&(d=c),this.pure=d}),function(a){a(fa,p),a(ma,o),a(yb,o),a(xb,o),a(Va,function(a){if(!this.has_pure_annotation(a)&&a.pure_funcs(this))return!0;for(var b=this.args.length;--b>=0;)if(this.args[b].has_side_effects(a))return!0;return!1}),a(ka,function(a){for(var b=this.body.length;--b>=0;)if(this.body[b].has_side_effects(a))return!0;return!1}),a(ja,function(a){return this.body.has_side_effects(a)}),a(Ba,p),a(Aa,o),a(cb,function(a){return this.left.has_side_effects(a)||this.right.has_side_effects(a)}),a(eb,p),a(db,function(a){return this.condition.has_side_effects(a)||this.consequent.has_side_effects(a)||this.alternative.has_side_effects(a)}),a(_a,function(a){return"delete"==this.operator||"++"==this.operator||"--"==this.operator||this.expression.has_side_effects(a)}),a(vb,function(a){return this.global()&&this.undeclared()}),a(gb,function(a){for(var b=this.properties.length;--b>=0;)if(this.properties[b].has_side_effects(a))return!0;return!1}),a(hb,function(a){return this.value.has_side_effects(a)}),a(fb,function(a){for(var b=this.elements.length;--b>=0;)if(this.elements[b].has_side_effects(a))return!0;return!1}),a(Za,function(a){return!a.option("pure_getters")||this.expression.has_side_effects(a)}),a($a,function(a){return!a.option("pure_getters")||(this.expression.has_side_effects(a)||this.property.has_side_effects(a))}),a(Ya,function(a){return!a.option("pure_getters")}),a(Xa,function(a){return this.car.has_side_effects(a)||this.cdr.has_side_effects(a)})}(function(a,b){a.DEFMETHOD("has_side_effects",b)}),function(a){function b(){var a=this.body.length;return a>0&&E(this.body[a-1])}a(ga,function(){return null}),a(Ca,function(){return this}),a(la,b),a(La,b),a(Ja,function(){return this.alternative&&E(this.body)&&E(this.alternative)&&this})}(function(a,b){a.DEFMETHOD("aborts",b)}),a(ia,function(a,c){return"up"===c.has_directive(a.value)?b(ma,a):a}),a(ha,function(a,c){return c.option("drop_debugger")?b(ma,a):a}),a(oa,function(a,c){return a.body instanceof Ha&&c.loopcontrol_target(a.body.label)===a.body?b(ma,a):0==a.label.references.length?a.body:a}),a(ka,function(a,b){return a.body=l(a.body,b),a}),a(la,function(a,c){switch(a.body=l(a.body,c),a.body.length){case 1:return a.body[0];case 0:return b(ma,a)}return a}),wa.DEFMETHOD("drop_unused",function(a){var c=this;if(a.has_directive("use asm"))return c;var e=a.option("toplevel");if(a.option("unused")&&(!(c instanceof xa)||e)&&!c.uses_eval&&!c.uses_with){var f=!/keep_assign/.test(a.option("unused")),g=/funcs/.test(e),h=/vars/.test(e);c instanceof xa&&1!=e||(g=h=!0);var i=[],j=Object.create(null);c instanceof xa&&a.top_retain&&c.variables.each(function(b){!a.top_retain(b)||b.id in j||(j[b.id]=!0,i.push(b))});var k=new y,l=this,m=new D(function(b,d){if(b!==c){if(b instanceof Ba){if(!g&&l===c){var e=b.name.definition();e.id in j||(j[e.id]=!0,i.push(e))}return k.add(b.name.name,b),!0}if(b instanceof Ra&&l===c)return b.definitions.forEach(function(b){if(!h){var c=b.name.definition();c.id in j||(j[c.id]=!0,i.push(c))}b.value&&(k.add(b.name.name,b.value),b.value.has_side_effects(a)&&b.value.walk(m))}),!0;if(f&&b instanceof eb&&"="==b.operator&&b.left instanceof vb&&l===c)return b.right.walk(m),!0;if(b instanceof vb){var e=b.definition();return e.id in j||(j[e.id]=!0,i.push(e)),!0}if(b instanceof wa){var n=l;return l=b,d(),l=n,!0}}});c.walk(m);for(var n=0;n<i.length;++n)i[n].orig.forEach(function(a){var b=k.get(a.name);b&&b.forEach(function(a){var b=new D(function(a){if(a instanceof vb){var b=a.definition();b.id in j||(j[b.id]=!0,i.push(b))}});a.walk(b)})});var o=new U(function(e,i,k){if(!(e instanceof Aa&&e.name)||a.option("keep_fnames")||e.name.definition().id in j||(e.name=null),e instanceof ya&&!(e instanceof za))for(var l=!a.option("keep_fargs"),m=e.argnames,n=m.length;--n>=0;){var p=m[n];p.definition().id in j?l=!1:(p.__unused=!0,l&&(m.pop(),a.warn("Dropping unused function argument {name} [{file}:{line},{col}]",{name:p.name,file:p.start.file,line:p.start.line,col:p.start.col})))}if(g&&e instanceof Ba&&e!==c)return e.name.definition().id in j?e:(a.warn("Dropping unused function {name} [{file}:{line},{col}]",{name:e.name.name,file:e.name.start.file,line:e.name.start.line,col:e.name.start.col}),b(ma,e));if(h&&e instanceof Ra&&!(o.parent()instanceof ua)){var q=e.definitions.filter(function(b){if(b.value&&(b.value=b.value.transform(o)),b.name.definition().id in j)return!0;var c={name:b.name.name,file:b.name.start.file,line:b.name.start.line,col:b.name.start.col};return b.value&&(b._unused_side_effects=b.value.drop_side_effect_free(a))?(a.warn("Side effects in initialization of unused variable {name} [{file}:{line},{col}]",c),!0):(a.warn("Dropping unused variable {name} [{file}:{line},{col}]",c),!1)});q=t(q,function(a,b){return!a.value&&b.value?-1:!b.value&&a.value?1:0});for(var r=[],n=0;n<q.length;){var s=q[n];s._unused_side_effects?(r.push(s._unused_side_effects),q.splice(n,1)):(r.length>0&&(r.push(s.value),s.value=Xa.from_array(r),r=[]),++n)}return r=r.length>0?b(la,e,{body:[b(ja,e,{body:Xa.from_array(r)})]}):null,0!=q.length||r?0==q.length?k?da.splice(r.body):r:(e.definitions=q,r?(r.body.unshift(e),k?da.splice(r.body):r):e):b(ma,e)}if(h&&f&&e instanceof eb&&"="==e.operator&&e.left instanceof vb){var q=e.left.definition();if(!(q.id in j)&&c.variables.get(q.name)===q)return d(o.parent(),e,e.right.transform(o))}if(e instanceof ta&&(i(e,this),e.init instanceof la)){var u=e.init.body.slice(0,-1);return e.init=e.init.body.slice(-1)[0].body,u.push(e),k?da.splice(u):b(la,e,{body:u})}return e instanceof wa&&e!==c?e:void 0});c.transform(o)}}),wa.DEFMETHOD("hoist_declarations",function(a){var c=this;if(a.has_directive("use asm"))return c;var d=a.option("hoist_funs"),e=a.option("hoist_vars");if(d||e){var f=[],g=[],i=new y,j=0,k=0;c.walk(new D(function(a){return a instanceof wa&&a!==c||(a instanceof Sa?(++k,!0):void 0)})),e=e&&k>1;var l=new U(function(a){if(a!==c){if(a instanceof ia)return f.push(a),b(ma,a);if(a instanceof Ba&&d)return g.push(a),b(ma,a);if(a instanceof Sa&&e){a.definitions.forEach(function(a){i.set(a.name.name,a),++j});var h=a.to_assignments(),k=l.parent();if(k instanceof ua&&k.init===a){if(null==h){var m=a.definitions[0].name;return b(vb,m,m)}return h}return k instanceof ta&&k.init===a?h:h?b(ja,a,{body:h}):b(ma,a)}if(a instanceof wa)return a}});if(c=c.transform(l),j>0){var m=[];if(i.each(function(a,b){c instanceof ya&&h(function(b){return b.name==a.name.name},c.argnames)?i.del(b):(a=a.clone(),a.value=null,m.push(a),i.set(b,a))}),m.length>0){for(;0<c.body.length;){if(c.body[0]instanceof ja){var n,o,p=c.body[0].body;if(p instanceof eb&&"="==p.operator&&(n=p.left)instanceof lb&&i.has(n.name)){var q=i.get(n.name);if(q.value)break;q.value=p.right,s(m,q),m.push(q),c.body.splice(0,1);continue}if(p instanceof Xa&&(o=p.car)instanceof eb&&"="==o.operator&&(n=o.left)instanceof lb&&i.has(n.name)){var q=i.get(n.name);if(q.value)break;q.value=o.right,s(m,q),m.push(q),c.body[0].body=p.cdr;continue}}if(c.body[0]instanceof ma)c.body.splice(0,1);else{if(!(c.body[0]instanceof la))break;var r=[0,1].concat(c.body[0].body);c.body.splice.apply(c.body,r)}}m=b(Sa,c,{definitions:m}),g.push(m)}}c.body=f.concat(g,c.body)}return c}),function(a){function c(){return this}function d(){return null}function e(a,b,c){for(var d=[],e=!1,f=0,g=a.length;f<g;f++){var h=a[f].drop_side_effect_free(b,c);e|=h!==a[f],h&&(d.push(h),c=!1)}return e?d.length?d:null:a}a(fa,c),a(yb,d),a(xb,d),a(Va,function(a,b){if(!this.has_pure_annotation(a)&&a.pure_funcs(this)){if(this.expression instanceof Aa&&(!this.expression.name||!this.expression.name.definition().references.length)){var c=this.clone();return c.expression=c.expression.process_expression(!1),c}return this}this.pure&&(a.warn("Dropping __PURE__ call [{file}:{line},{col}]",this.start),this.pure.value=this.pure.value.replace(/[@#]__PURE__/g," "));var d=e(this.args,a,b);return d&&Xa.from_array(d)}),a(Aa,d),a(cb,function(a,c){var d=this.right.drop_side_effect_free(a);if(!d)return this.left.drop_side_effect_free(a,c);switch(this.operator){case"&&":case"||":var e=this.clone();return e.right=d,e;default:var f=this.left.drop_side_effect_free(a,c);return f?b(Xa,this,{car:f,cdr:d}):this.right.drop_side_effect_free(a,c)}}),a(eb,c),a(db,function(a){var c=this.consequent.drop_side_effect_free(a),d=this.alternative.drop_side_effect_free(a);if(c===this.consequent&&d===this.alternative)return this;if(!c)return d?b(cb,this,{operator:"||",left:this.condition,right:d}):this.condition.drop_side_effect_free(a);if(!d)return b(cb,this,{operator:"&&",left:this.condition,right:c});var e=this.clone();return e.consequent=c,e.alternative=d,e}),a(_a,function(a,c){switch(this.operator){case"delete":case"++":case"--":return this;case"typeof":if(this.expression instanceof vb)return null;default:var d=this.expression.drop_side_effect_free(a,c);return c&&this instanceof ab&&k(d)?d===this.expression&&1===this.operator.length?this:b(ab,this,{operator:1===this.operator.length?this.operator:"!",expression:d}):d}}),a(vb,function(){return this.undeclared()?this:null}),a(gb,function(a,b){var c=e(this.properties,a,b);return c&&Xa.from_array(c)}),a(hb,function(a,b){return this.value.drop_side_effect_free(a,b)}),a(fb,function(a,b){var c=e(this.elements,a,b);return c&&Xa.from_array(c)}),a(Za,function(a,b){return a.option("pure_getters")?this.expression.drop_side_effect_free(a,b):this}),a($a,function(a,c){if(!a.option("pure_getters"))return this;var d=this.expression.drop_side_effect_free(a,c);if(!d)return this.property.drop_side_effect_free(a,c);var e=this.property.drop_side_effect_free(a);return e?b(Xa,this,{car:d,cdr:e}):d}),a(Xa,function(a){var c=this.cdr.drop_side_effect_free(a);return c===this.cdr?this:c?b(Xa,this,{car:this.car,cdr:c}):this.car})}(function(a,b){a.DEFMETHOD("drop_side_effect_free",b)}),a(ja,function(a,c){if(c.option("side_effects")){var d=a.body,e=d.drop_side_effect_free(c,!0);if(!e)return c.warn("Dropping side-effect-free statement [{file}:{line},{col}]",a.start),b(ma,a);if(e!==d)return b(ja,a,{body:e})}return a}),a(qa,function(a,c){var d=a.condition.evaluate(c);if(a.condition=d[0],!c.option("loops"))return a;if(d.length>1){if(d[1])return b(ta,a,{body:a.body});if(!(a instanceof sa))return a;if(c.option("dead_code")){var e=[];return q(c,a.body,e),b(la,a,{body:e})}}return a instanceof sa?b(ta,a,a).transform(c):a}),a(ta,function(a,c){var d=a.condition;if(d&&(d=d.evaluate(c),a.condition=d[0]),!c.option("loops"))return a;if(d&&d.length>1&&!d[1]&&c.option("dead_code")){var e=[];return a.init instanceof ga?e.push(a.init):a.init&&e.push(b(ja,a.init,{body:a.init})),q(c,a.body,e),b(la,a,{body:e})}return F(a,c),a}),a(Ja,function(a,c){if(f(a.alternative)&&(a.alternative=null),!c.option("conditionals"))return a;var d=a.condition.evaluate(c);if(a.condition=d[0],d.length>1)if(d[1]){if(c.warn("Condition always true [{file}:{line},{col}]",a.condition.start),c.option("dead_code")){var e=[];return a.alternative&&q(c,a.alternative,e),e.push(a.body),b(la,a,{body:e}).transform(c)}}else if(c.warn("Condition always false [{file}:{line},{col}]",a.condition.start),c.option("dead_code")){var e=[];return q(c,a.body,e),a.alternative&&e.push(a.alternative),b(la,a,{body:e}).transform(c)}var g=a.condition.negate(c),h=a.condition.print_to_string().length,i=g.print_to_string().length,k=i<h;if(a.alternative&&k){k=!1,a.condition=g;var l=a.body;a.body=a.alternative||b(ma,a),a.alternative=l}if(f(a.body)&&f(a.alternative))return b(ja,a.condition,{body:a.condition}).transform(c);if(a.body instanceof ja&&a.alternative instanceof ja)return b(ja,a,{body:b(db,a,{condition:a.condition,consequent:j(a.body),alternative:j(a.alternative)})}).transform(c);if(f(a.alternative)&&a.body instanceof ja)return h===i&&!k&&a.condition instanceof cb&&"||"==a.condition.operator&&(k=!0),k?b(ja,a,{body:b(cb,a,{operator:"||",left:g,right:j(a.body)})}).transform(c):b(ja,a,{body:b(cb,a,{operator:"&&",left:a.condition,right:j(a.body)})}).transform(c);if(a.body instanceof ma&&a.alternative&&a.alternative instanceof ja)return b(ja,a,{body:b(cb,a,{operator:"||",left:a.condition,right:j(a.alternative)})}).transform(c);if(a.body instanceof Da&&a.alternative instanceof Da&&a.body.TYPE==a.alternative.TYPE)return b(a.body.CTOR,a,{value:b(db,a,{condition:a.condition,consequent:a.body.value||b(Fb,a.body),alternative:a.alternative.value||b(Fb,a.alternative)})}).transform(c);if(a.body instanceof Ja&&!a.body.alternative&&!a.alternative&&(a.condition=b(cb,a.condition,{operator:"&&",left:a.condition,right:a.body.condition}).transform(c),a.body=a.body.body),E(a.body)&&a.alternative){var m=a.alternative;return a.alternative=null,b(la,a,{body:[a,m]}).transform(c)}if(E(a.alternative)){var n=a.body;return a.body=a.alternative,a.condition=k?g:a.condition.negate(c),a.alternative=null,b(la,a,{body:[a,n]}).transform(c)}return a}),a(Ka,function(a,c){if(0==a.body.length&&c.option("conditionals"))return b(ja,a,{body:a.expression}).transform(c);for(;;){var d=a.body[a.body.length-1];if(d){var e=d.body[d.body.length-1];if(e instanceof Ha&&i(c.loopcontrol_target(e.label))===a&&d.body.pop(),d instanceof Ma&&0==d.body.length){a.body.pop();continue}}break}var f=a.expression.evaluate(c);a:if(2==f.length)try{if(a.expression=f[0],!c.option("dead_code"))break a;var g=f[1],h=!1,j=!1,k=!1,l=!1,m=!1,n=new U(function(d,e,f){if(d instanceof ya||d instanceof ja)return d;if(d instanceof Ka&&d===a)return d=d.clone(),e(d,this),m?d:b(la,d,{body:d.body.reduce(function(a,b){return a.concat(b.body)},[])}).transform(c);if(d instanceof Ja||d instanceof Oa){var i=h;return h=!j,e(d,this),h=i,d}if(d instanceof na||d instanceof Ka){var i=j;return j=!0,e(d,this),j=i,d}if(d instanceof Ha&&this.loopcontrol_target(d.label)===a)return h?(m=!0,d):j?d:(l=!0,f?da.skip:b(ma,d));if(d instanceof La&&this.parent()===a){if(l)return da.skip;if(d instanceof Na){var n=d.expression.evaluate(c);if(n.length<2)throw a;return n[1]===g||k?(k=!0,E(d)&&(l=!0),e(d,this),d):da.skip}return e(d,this),d}});n.stack=c.stack.slice(),a=a.transform(n)}catch(b){if(b!==a)throw b}return a}),a(Na,function(a,b){return a.body=l(a.body,b),a}),a(Oa,function(a,b){return a.body=l(a.body,b),a}),Ra.DEFMETHOD("remove_initializers",function(){this.definitions.forEach(function(a){a.value=null})}),Ra.DEFMETHOD("to_assignments",function(){var a=this.definitions.reduce(function(a,c){if(c.value){var d=b(vb,c.name,c.name);a.push(b(eb,c,{operator:"=",left:d,right:c.value}))}return a},[]);return 0==a.length?null:Xa.from_array(a)}),a(Ra,function(a,c){return 0==a.definitions.length?b(ma,a):a}),a(Va,function(a,c){var d=a.expression;if(c.option("reduce_vars")&&d instanceof vb){var e=d.definition();e.fixed instanceof Ba&&(e.fixed=b(Aa,e.fixed,e.fixed).clone(!0)),e.fixed instanceof Aa&&(d=e.fixed,!c.option("unused")||1!=e.references.length||e.scope.uses_arguments&&e.orig[0]instanceof qb||e.scope.uses_eval||c.find_parent(wa)!==e.scope||(a.expression=d))}if(c.option("unused")&&d instanceof Aa&&!d.uses_arguments&&!d.uses_eval){for(var f=0,g=0,h=0,i=a.args.length;h<i;h++){var j=h>=d.argnames.length;if(j||d.argnames[h].__unused){var l=a.args[h].drop_side_effect_free(c);if(l)a.args[f++]=l;else if(!j){a.args[f++]=b(Ab,a.args[h],{value:0});continue}}else a.args[f++]=a.args[h];g=f}a.args.length=g}if(c.option("unsafe"))if(d instanceof vb&&d.undeclared())switch(d.name){case"Array":if(1!=a.args.length)return b(fb,a,{elements:a.args}).transform(c);break;case"Object":if(0==a.args.length)return b(gb,a,{properties:[]});break;case"String":if(0==a.args.length)return b(zb,a,{value:""});if(a.args.length<=1)return b(cb,a,{left:a.args[0],operator:"+",right:b(zb,a,{value:""})}).transform(c);break;case"Number":if(0==a.args.length)return b(Ab,a,{value:0});if(1==a.args.length)return b(ab,a,{expression:a.args[0],operator:"+"}).transform(c);case"Boolean":if(0==a.args.length)return b(Jb,a);if(1==a.args.length)return b(ab,a,{expression:b(ab,a,{expression:a.args[0],operator:"!"}),operator:"!"}).transform(c);break;case"Function":if(0==a.args.length)return b(Aa,a,{argnames:[],body:[]});if(x(a.args,function(a){return a instanceof zb}))try{var m="(function("+a.args.slice(0,-1).map(function(a){return a.value}).join(",")+"){"+a.args[a.args.length-1].value+"})()",n=T(m);n.figure_out_scope({screw_ie8:c.option("screw_ie8")});var o=new Y(c.options);n=n.transform(o),n.figure_out_scope({screw_ie8:c.option("screw_ie8")}),n.mangle_names();var p;try{n.walk(new D(function(a){if(a instanceof ya)throw p=a,n}))}catch(a){if(a!==n)throw a}if(!p)return a;var q=p.argnames.map(function(c,d){return b(zb,a.args[d],{value:c.print_to_string()})}),m=X();return la.prototype._codegen.call(p,p,m),m=m.toString().replace(/^\{|\}$/g,""),q.push(b(zb,a.args[a.args.length-1],{value:m})),a.args=q,a}catch(b){if(!(b instanceof P))throw console.log(b),b;c.warn("Error parsing code passed to new Function [{file}:{line},{col}]",a.args[a.args.length-1].start),c.warn(b.toString())}}else{if(d instanceof Za&&"toString"==d.property&&0==a.args.length)return b(cb,a,{left:b(zb,a,{value:""}),operator:"+",right:d.expression}).transform(c);if(d instanceof Za&&d.expression instanceof fb&&"join"==d.property)a:{var r;if(a.args.length>0){if(r=a.args[0].evaluate(c),r.length<2)break a;r=r[1]}var s=[],t=[];if(d.expression.elements.forEach(function(d){d=d.evaluate(c),d.length>1?t.push(d[1]):(t.length>0&&(s.push(b(zb,a,{value:t.join(r)})),t.length=0),s.push(d[0]))}),t.length>0&&s.push(b(zb,a,{value:t.join(r)})),0==s.length)return b(zb,a,{value:""});if(1==s.length)return s[0].is_string(c)?s[0]:b(cb,s[0],{operator:"+",left:b(zb,a,{value:""}),right:s[0]});if(""==r){var u;return u=s[0].is_string(c)||s[1].is_string(c)?s.shift():b(zb,a,{value:""}),s.reduce(function(a,c){return b(cb,c,{operator:"+",left:a,right:c})},u).transform(c)}var l=a.clone();return l.expression=l.expression.clone(),l.expression.expression=l.expression.expression.clone(),l.expression.expression.elements=s,B(a,l)}}if(d instanceof Aa){if(d.body[0]instanceof Ea){var v=d.body[0].value;if(!v||v.is_constant()){var q=a.args.concat(v||b(Fb,a));return Xa.from_array(q).transform(c)}}if(c.option("side_effects")&&!ka.prototype.has_side_effects.call(d,c)){var q=a.args.concat(b(Fb,a));return Xa.from_array(q).transform(c)}}if(c.option("drop_console")&&d instanceof Ya){for(var w=d.expression;w.expression;)w=w.expression;if(w instanceof vb&&"console"==w.name&&w.undeclared())return b(Fb,a).transform(c)}return c.option("negate_iife")&&c.parent()instanceof ja&&k(a)?a.negate(c,!0):a}),a(Wa,function(a,c){if(c.option("unsafe")){var d=a.expression;if(d instanceof vb&&d.undeclared())switch(d.name){case"Object":case"RegExp":case"Function":case"Error":case"Array":return b(Va,a,a).transform(c)}}return a}),a(Xa,function(a,c){if(!c.option("side_effects"))return a;if(a.car=a.car.drop_side_effect_free(c,A(c)),!a.car)return d(c.parent(),a,a.cdr);if(c.option("cascade")){var e;if(a.car instanceof eb&&!a.car.left.has_side_effects(c)?e=a.car.left:a.car instanceof _a&&("++"==a.car.operator||"--"==a.car.operator)&&(e=a.car.expression),e)for(var f,g,h=a.cdr;;){if(h.equivalent_to(e)){var i=a.car instanceof bb?b(ab,a.car,{operator:a.car.operator,expression:e}):a.car;return f?(f[g]=i,a.cdr):i}if(h instanceof cb&&!(h instanceof eb))g=h.left.is_constant()?"right":"left";else{if(!(h instanceof Va||h instanceof _a&&"++"!=h.operator&&"--"!=h.operator))break;g="expression"}f=h,h=h[g]}}return u(a.cdr)?b(ab,a,{operator:"void",expression:a.car}):a}),_a.DEFMETHOD("lift_sequences",function(a){if(a.option("sequences")&&this.expression instanceof Xa){var b=this.expression,c=b.to_array();return this.expression=c.pop(),c.push(this),b=Xa.from_array(c).transform(a)}return this}),a(bb,function(a,b){return a.lift_sequences(b)}),a(ab,function(a,c){var d=a.lift_sequences(c);if(d!==a)return d;var e=a.expression;if(c.option("side_effects")&&"void"==a.operator)return e=e.drop_side_effect_free(c),e?(a.expression=e,a):b(Fb,a).transform(c);if(c.option("booleans")&&c.in_boolean_context())switch(a.operator){case"!":if(e instanceof ab&&"!"==e.operator)return e.expression;if(e instanceof cb){var f=A(c);a=(f?C:B)(a,e.negate(c,f))}break;case"typeof":return c.warn("Boolean expression always true [{file}:{line},{col}]",a.start),b(Xa,a,{car:e,cdr:b(Kb,a)}).optimize(c)}return a.evaluate(c)[0]}),cb.DEFMETHOD("lift_sequences",function(a){if(a.option("sequences")){if(this.left instanceof Xa){var b=this.left,c=b.to_array();return this.left=c.pop(),c.push(this),b=Xa.from_array(c).transform(a)}if(this.right instanceof Xa&&this instanceof eb&&!G(this.left,a)){var b=this.right,c=b.to_array();return this.right=c.pop(),c.push(this),b=Xa.from_array(c).transform(a)}}return this});var J=w("== === != !== * & | ^");a(cb,function(a,c){function e(){return a.left instanceof yb||a.right instanceof yb||!a.left.has_side_effects(c)&&!a.right.has_side_effects(c)}function f(b){if(e()){b&&(a.operator=b);var c=a.left;a.left=a.right,a.right=c}}var g=a.left.evaluate(c),h=a.right.evaluate(c);if(g.length>1&&g[0].is_constant()!==a.left.is_constant()||h.length>1&&h[0].is_constant()!==a.right.is_constant())return b(cb,a,{operator:a.operator,left:g[0],right:h[0]}).optimize(c);if(J(a.operator)&&(a.right instanceof yb&&!(a.left instanceof yb)&&(a.left instanceof cb&&bc[a.left.operator]>=bc[a.operator]||f()),/^[!=]==?$/.test(a.operator))){if(a.left instanceof vb&&a.right instanceof db){if(a.right.consequent instanceof vb&&a.right.consequent.definition()===a.left.definition()){if(/^==/.test(a.operator))return a.right.condition;if(/^!=/.test(a.operator))return a.right.condition.negate(c)}if(a.right.alternative instanceof vb&&a.right.alternative.definition()===a.left.definition()){if(/^==/.test(a.operator))return a.right.condition.negate(c);if(/^!=/.test(a.operator))return a.right.condition}}if(a.right instanceof vb&&a.left instanceof db){if(a.left.consequent instanceof vb&&a.left.consequent.definition()===a.right.definition()){if(/^==/.test(a.operator))return a.left.condition;if(/^!=/.test(a.operator))return a.left.condition.negate(c)}if(a.left.alternative instanceof vb&&a.left.alternative.definition()===a.right.definition()){if(/^==/.test(a.operator))return a.left.condition.negate(c);if(/^!=/.test(a.operator))return a.left.condition}}}if(a=a.lift_sequences(c),c.option("comparisons"))switch(a.operator){case"===":case"!==":(a.left.is_string(c)&&a.right.is_string(c)||a.left.is_number(c)&&a.right.is_number(c)||a.left.is_boolean()&&a.right.is_boolean())&&(a.operator=a.operator.substr(0,2));case"==":case"!=":if(a.left instanceof zb&&"undefined"==a.left.value&&a.right instanceof ab&&"typeof"==a.right.operator){var i=a.right.expression;(i instanceof vb?i.undeclared():i instanceof Ya&&!c.option("screw_ie8"))||(a.right=i,a.left=b(Fb,a.left).optimize(c),2==a.operator.length&&(a.operator+="="))}}if(c.option("booleans")&&c.in_boolean_context())switch(a.operator){case"&&":var j=a.left.evaluate(c),k=a.right.evaluate(c);if(j.length>1&&!j[1]||k.length>1&&!k[1])return c.warn("Boolean && always false [{file}:{line},{col}]",a.start),b(Xa,a,{car:a.left,cdr:b(Jb,a)}).optimize(c);if(j.length>1&&j[1])return k[0];if(k.length>1&&k[1])return j[0];break;case"||":var j=a.left.evaluate(c),k=a.right.evaluate(c);if(j.length>1&&j[1]||k.length>1&&k[1])return c.warn("Boolean || always true [{file}:{line},{col}]",a.start),b(Xa,a,{car:a.left,cdr:b(Kb,a)}).optimize(c);if(j.length>1&&!j[1])return k[0];if(k.length>1&&!k[1])return j[0];break;case"+":var j=a.left.evaluate(c),k=a.right.evaluate(c);if(j.length>1&&j[0]instanceof zb&&j[1])return c.warn("+ in boolean context always true [{file}:{line},{col}]",a.start),b(Xa,a,{car:a.right,cdr:b(Kb,a)}).optimize(c);if(k.length>1&&k[0]instanceof zb&&k[1])return c.warn("+ in boolean context always true [{file}:{line},{col}]",a.start),b(Xa,a,{car:a.left,cdr:b(Kb,a)}).optimize(c)}if(c.option("comparisons")&&a.is_boolean()){if(!(c.parent()instanceof cb)||c.parent()instanceof eb){var l=A(c),m=b(ab,a,{operator:"!",expression:a.negate(c,l)});a=(l?C:B)(a,m)}if(c.option("unsafe_comps"))switch(a.operator){case"<":f(">");break;case"<=":f(">=")}}if("+"==a.operator){if(a.right instanceof zb&&""==a.right.getValue()&&a.left.is_string(c))return a.left;if(a.left instanceof zb&&""==a.left.getValue()&&a.right.is_string(c))return a.right;if(a.left instanceof cb&&"+"==a.left.operator&&a.left.left instanceof zb&&""==a.left.left.getValue()&&a.right.is_string(c))return a.left=a.left.right,a.transform(c)}if(c.option("evaluate")){switch(a.operator){case"&&":if(a.left.is_constant())return a.left.constant_value(c)?(c.warn("Condition left of && always true [{file}:{line},{col}]",a.start),d(c.parent(),a,a.right)):(c.warn("Condition left of && always false [{file}:{line},{col}]",a.start),d(c.parent(),a,a.left));break;case"||":if(a.left.is_constant())return a.left.constant_value(c)?(c.warn("Condition left of || always true [{file}:{line},{col}]",a.start),d(c.parent(),a,a.left)):(c.warn("Condition left of || always false [{file}:{line},{col}]",a.start),d(c.parent(),a,a.right))}var n=!0;switch(a.operator){case"+":a.left instanceof yb&&a.right instanceof cb&&"+"==a.right.operator&&a.right.left instanceof yb&&a.right.is_string(c)&&(a=b(cb,a,{operator:"+",left:b(zb,a.left,{value:""+a.left.getValue()+a.right.left.getValue(),start:a.left.start,end:a.right.left.end}),right:a.right.right})),a.right instanceof yb&&a.left instanceof cb&&"+"==a.left.operator&&a.left.right instanceof yb&&a.left.is_string(c)&&(a=b(cb,a,{operator:"+",left:a.left.left,right:b(zb,a.right,{value:""+a.left.right.getValue()+a.right.getValue(),start:a.left.right.start,end:a.right.end})})),a.left instanceof cb&&"+"==a.left.operator&&a.left.is_string(c)&&a.left.right instanceof yb&&a.right instanceof cb&&"+"==a.right.operator&&a.right.left instanceof yb&&a.right.is_string(c)&&(a=b(cb,a,{operator:"+",left:b(cb,a.left,{operator:"+",left:a.left.left,right:b(zb,a.left.right,{value:""+a.left.right.getValue()+a.right.left.getValue(),start:a.left.right.start,end:a.right.left.end})}),right:a.right.right})),a.right instanceof ab&&"-"==a.right.operator&&a.left.is_number(c)&&(a=b(cb,a,{operator:"-",left:a.left,right:a.right.expression})),a.left instanceof ab&&"-"==a.left.operator&&e()&&a.right.is_number(c)&&(a=b(cb,a,{operator:"-",left:a.right,right:a.left.expression}));case"*":n=c.option("unsafe_math");case"&":case"|":case"^":if(a.left.is_number(c)&&a.right.is_number(c)&&e()&&!(a.left instanceof cb&&a.left.operator!=a.operator&&bc[a.left.operator]>=bc[a.operator])){var o=b(cb,a,{operator:a.operator,left:a.right,right:a.left});a=a.right instanceof yb&&!(a.left instanceof yb)?B(o,a):B(a,o)}n&&a.is_number(c)&&(a.right instanceof cb&&a.right.operator==a.operator&&(a=b(cb,a,{operator:a.operator,left:b(cb,a.left,{operator:a.operator,left:a.left,right:a.right.left,start:a.left.start,end:a.right.left.end}),right:a.right.right})),a.right instanceof yb&&a.left instanceof cb&&a.left.operator==a.operator&&(a.left.left instanceof yb?a=b(cb,a,{operator:a.operator,left:b(cb,a.left,{operator:a.operator,left:a.left.left,right:a.right,start:a.left.left.start,end:a.right.end}),right:a.left.right}):a.left.right instanceof yb&&(a=b(cb,a,{operator:a.operator,left:b(cb,a.left,{operator:a.operator,left:a.left.right,right:a.right,start:a.left.right.start,end:a.right.end}),right:a.left.left}))),a.left instanceof cb&&a.left.operator==a.operator&&a.left.right instanceof yb&&a.right instanceof cb&&a.right.operator==a.operator&&a.right.left instanceof yb&&(a=b(cb,a,{operator:a.operator,left:b(cb,a.left,{operator:a.operator,left:b(cb,a.left.left,{operator:a.operator,left:a.left.right,right:a.right.left,start:a.left.right.start,end:a.right.left.end}),right:a.left.left}),right:a.right.right})))}}return a.right instanceof cb&&a.right.operator==a.operator&&("&&"==a.operator||"||"==a.operator||"+"==a.operator&&(a.right.left.is_string(c)||a.left.is_string(c)&&a.right.right.is_string(c)))?(a.left=b(cb,a.left,{operator:a.operator,left:a.left,right:a.right.left}),a.right=a.right.right,a.transform(c)):a.evaluate(c)[0]}),a(vb,function(a,c){var d=a.resolve_defines(c);if(d)return d;if(c.option("screw_ie8")&&a.undeclared()&&!v(a,c.parent())&&(!a.scope.uses_with||!c.find_parent(va)))switch(a.name){case"undefined":return b(Fb,a).transform(c);case"NaN":return b(Eb,a).transform(c);case"Infinity":return b(Hb,a).transform(c)}if(c.option("evaluate")&&c.option("reduce_vars")){var e=a.definition();if(e.fixed){if(void 0===e.should_replace){var f=e.fixed.evaluate(c);if(f.length>1){
+var g=f[0].print_to_string().length,h=e.name.length,i=e.references.length,j=e.global||!i?0:(h+2+g)/i;e.should_replace=g<=h+j&&f[0]}else e.should_replace=!1}if(e.should_replace)return e.should_replace}}return a}),a(Hb,function(a,c){return b(cb,a,{operator:"/",left:b(Ab,a,{value:1}),right:b(Ab,a,{value:0})})}),a(Fb,function(a,c){if(c.option("unsafe")){var d=c.find_parent(wa),e=d.find_variable("undefined");if(e){var f=b(vb,a,{name:"undefined",scope:d,thedef:e});return f.is_undefined=!0,f}}return a});var K=["+","-","/","*","%",">>","<<",">>>","|","^","&"],L=["*","|","^","&"];a(eb,function(a,b){return a=a.lift_sequences(b),"="==a.operator&&a.left instanceof vb&&a.right instanceof cb&&(a.right.left instanceof vb&&a.right.left.name==a.left.name&&g(a.right.operator,K)?(a.operator=a.right.operator+"=",a.right=a.right.right):a.right.right instanceof vb&&a.right.right.name==a.left.name&&g(a.right.operator,L)&&!a.right.left.has_side_effects(b)&&(a.operator=a.right.operator+"=",a.right=a.right.left)),a}),a(db,function(a,c){function e(a){return a.is_boolean()?a:b(ab,a,{operator:"!",expression:a.negate(c)})}function f(a){return a instanceof Kb||a instanceof ab&&"!"==a.operator&&a.expression instanceof yb&&!a.expression.value}function g(a){return a instanceof Jb||a instanceof ab&&"!"==a.operator&&a.expression instanceof yb&&!!a.expression.value}if(!c.option("conditionals"))return a;if(a.condition instanceof Xa){var h=a.condition.car;return a.condition=a.condition.cdr,Xa.cons(h,a)}var i=a.condition.evaluate(c);if(i.length>1)return i[1]?(c.warn("Condition always true [{file}:{line},{col}]",a.start),d(c.parent(),a,a.consequent)):(c.warn("Condition always false [{file}:{line},{col}]",a.start),d(c.parent(),a,a.alternative));var j=A(c),k=i[0].negate(c,j);(j?C:B)(i[0],k)===k&&(a=b(db,a,{condition:k,consequent:a.alternative,alternative:a.consequent}));var l=a.consequent,m=a.alternative;return!(l instanceof eb&&m instanceof eb&&l.operator==m.operator&&l.left.equivalent_to(m.left))||l.left.has_side_effects(c)&&a.condition.has_side_effects(c)?l instanceof Va&&m.TYPE===l.TYPE&&1==l.args.length&&1==m.args.length&&l.expression.equivalent_to(m.expression)&&!l.expression.has_side_effects(c)?(l.args[0]=b(db,a,{condition:a.condition,consequent:l.args[0],alternative:m.args[0]}),l):l instanceof db&&l.alternative.equivalent_to(m)?b(db,a,{condition:b(cb,a,{left:a.condition,operator:"&&",right:l.condition}),consequent:l.consequent,alternative:m}):l.equivalent_to(m)?b(Xa,a,{car:a.condition,cdr:l}).optimize(c):f(a.consequent)?g(a.alternative)?e(a.condition):b(cb,a,{operator:"||",left:e(a.condition),right:a.alternative}):g(a.consequent)?f(a.alternative)?e(a.condition.negate(c)):b(cb,a,{operator:"&&",left:e(a.condition.negate(c)),right:a.alternative}):f(a.alternative)?b(cb,a,{operator:"||",left:e(a.condition.negate(c)),right:a.consequent}):g(a.alternative)?b(cb,a,{operator:"&&",left:e(a.condition),right:a.consequent}):a:b(eb,a,{operator:l.operator,left:l.left,right:b(db,a,{condition:a.condition,consequent:l.right,alternative:m.right})})}),a(Ib,function(a,c){if(c.option("booleans")){var d=c.parent();return d instanceof cb&&("=="==d.operator||"!="==d.operator)?(c.warn("Non-strict equality against boolean: {operator} {value} [{file}:{line},{col}]",{operator:d.operator,value:a.value,file:d.start.file,line:d.start.line,col:d.start.col}),b(Ab,a,{value:+a.value})):b(ab,a,{operator:"!",expression:b(Ab,a,{value:1-a.value})})}return a}),a($a,function(a,c){var d=a.property;if(d instanceof zb&&c.option("properties")){if(d=d.getValue(),Nb(d)?c.option("screw_ie8"):N(d))return b(Za,a,{expression:a.expression,property:d}).optimize(c);var e=parseFloat(d);isNaN(e)||e.toString()!=d||(a.property=b(Ab,a.property,{value:e}))}return a.evaluate(c)[0]}),a(Za,function(a,c){var d=a.resolve_defines(c);if(d)return d;var e=a.property;if(Nb(e)&&!c.option("screw_ie8"))return b($a,a,{expression:a.expression,property:b(zb,a,{value:e})}).optimize(c);if(c.option("unsafe_proto")&&a.expression instanceof Za&&"prototype"==a.expression.property){var f=a.expression.expression;if(f instanceof vb&&f.undeclared())switch(f.name){case"Array":a.expression=b(fb,a.expression,{elements:[]});break;case"Object":a.expression=b(gb,a.expression,{properties:[]});break;case"String":a.expression=b(zb,a.expression,{value:""})}}return a.evaluate(c)[0]}),a(fb,H),a(gb,H),a(Bb,H),a(Ea,function(a,b){return a.value&&u(a.value)&&(a.value=null),a}),a(Ua,function(a,b){var c=b.option("global_defs");return c&&z(c,a.name.name)&&b.warn("global_defs "+a.name.name+" redefined [{file}:{line},{col}]",a.start),a})}(),function(){function a(a){if("Literal"==a.type)return null!=a.raw?a.raw:a.value+""}function b(b){var c=b.loc,d=c&&c.start,e=b.range;return new ea({file:c&&c.source,line:d&&d.line,col:d&&d.column,pos:e?e[0]:b.start,endline:d&&d.line,endcol:d&&d.column,endpos:e?e[0]:b.start,raw:a(b)})}function d(b){var c=b.loc,d=c&&c.end,e=b.range;return new ea({file:c&&c.source,line:d&&d.line,col:d&&d.column,pos:e?e[1]:b.end,endline:d&&d.line,endcol:d&&d.column,endpos:e?e[1]:b.end,raw:a(b)})}function e(a,e,g){var k="function From_Moz_"+a+"(M){\n";k+="return new U2."+e.name+"({\nstart: my_start_token(M),\nend: my_end_token(M)";var m="function To_Moz_"+a+"(M){\n";m+="return {\ntype: "+JSON.stringify(a),g&&g.split(/\s*,\s*/).forEach(function(a){var b=/([a-z0-9$_]+)(=|@|>|%)([a-z0-9$_]+)/i.exec(a);if(!b)throw new Error("Can't understand property map: "+a);var c=b[1],d=b[2],e=b[3];switch(k+=",\n"+e+": ",m+=",\n"+c+": ",d){case"@":k+="M."+c+".map(from_moz)",m+="M."+e+".map(to_moz)";break;case">":k+="from_moz(M."+c+")",m+="to_moz(M."+e+")";break;case"=":k+="M."+c,m+="M."+e;break;case"%":k+="from_moz(M."+c+").body",m+="to_moz_block(M)";break;default:throw new Error("Can't understand operator in propmap: "+a)}}),k+="\n})\n}",m+="\n}\n}",k=new Function("U2","my_start_token","my_end_token","from_moz","return("+k+")")(c,b,d,f),m=new Function("to_moz","to_moz_block","return("+m+")")(i,j),l[a]=k,h(e,m)}function f(a){m.push(a);var b=null!=a?l[a.type](a):null;return m.pop(),b}function g(a,b,c){var d=a.start,e=a.end;return null!=d.pos&&null!=e.endpos&&(b.range=[d.pos,e.endpos]),d.line&&(b.loc={start:{line:d.line,column:d.col},end:e.endline?{line:e.endline,column:e.endcol}:null},d.file&&(b.loc.source=d.file)),b}function h(a,b){a.DEFMETHOD("to_mozilla_ast",function(){return g(this,b(this))})}function i(a){return null!=a?a.to_mozilla_ast():null}function j(a){return{type:"BlockStatement",body:a.body.map(i)}}var k=function(a){for(var b=!0,c=0;c<a.length;c++)b&&a[c]instanceof ga&&a[c].body instanceof zb?a[c]=new ia({start:a[c].start,end:a[c].end,value:a[c].body.value}):!b||a[c]instanceof ga&&a[c].body instanceof zb||(b=!1);return a},l={Program:function(a){return new xa({start:b(a),end:d(a),body:k(a.body.map(f))})},FunctionDeclaration:function(a){return new Ba({start:b(a),end:d(a),name:f(a.id),argnames:a.params.map(f),body:k(f(a.body).body)})},FunctionExpression:function(a){return new Aa({start:b(a),end:d(a),name:f(a.id),argnames:a.params.map(f),body:k(f(a.body).body)})},ExpressionStatement:function(a){return new ja({start:b(a),end:d(a),body:f(a.expression)})},TryStatement:function(a){var c=a.handlers||[a.handler];if(c.length>1||a.guardedHandlers&&a.guardedHandlers.length)throw new Error("Multiple catch clauses are not supported.");return new Oa({start:b(a),end:d(a),body:f(a.block).body,bcatch:f(c[0]),bfinally:a.finalizer?new Qa(f(a.finalizer)):null})},Property:function(a){var c=a.key,e="Identifier"==c.type?c.name:c.value,g={start:b(c),end:d(a.value),key:e,value:f(a.value)};switch(a.kind){case"init":return new ib(g);case"set":return g.value.name=f(c),new jb(g);case"get":return g.value.name=f(c),new kb(g)}},ArrayExpression:function(a){return new fb({start:b(a),end:d(a),elements:a.elements.map(function(a){return null===a?new Gb:f(a)})})},ObjectExpression:function(a){return new gb({start:b(a),end:d(a),properties:a.properties.map(function(a){return a.type="Property",f(a)})})},SequenceExpression:function(a){return Xa.from_array(a.expressions.map(f))},MemberExpression:function(a){return new(a.computed?$a:Za)({start:b(a),end:d(a),property:a.computed?f(a.property):a.property.name,expression:f(a.object)})},SwitchCase:function(a){return new(a.test?Na:Ma)({start:b(a),end:d(a),expression:f(a.test),body:a.consequent.map(f)})},VariableDeclaration:function(a){return new("const"===a.kind?Ta:Sa)({start:b(a),end:d(a),definitions:a.declarations.map(f)})},Literal:function(a){var c=a.value,e={start:b(a),end:d(a)};if(null===c)return new Db(e);switch(typeof c){case"string":return e.value=c,new zb(e);case"number":return e.value=c,new Ab(e);case"boolean":return new(c?Kb:Jb)(e);default:var f=a.regex;return f&&f.pattern?e.value=new RegExp(f.pattern,f.flags).toString():e.value=a.regex&&a.raw?a.raw:c,new Bb(e)}},Identifier:function(a){var c=m[m.length-2];return new("LabeledStatement"==c.type?ub:"VariableDeclarator"==c.type&&c.id===a?"const"==c.kind?pb:ob:"FunctionExpression"==c.type?c.id===a?sb:qb:"FunctionDeclaration"==c.type?c.id===a?rb:qb:"CatchClause"==c.type?tb:"BreakStatement"==c.type||"ContinueStatement"==c.type?wb:vb)({start:b(a),end:d(a),name:a.name})}};l.UpdateExpression=l.UnaryExpression=function(a){return new(("prefix"in a?a.prefix:"UnaryExpression"==a.type)?ab:bb)({start:b(a),end:d(a),operator:a.operator,expression:f(a.argument)})},e("EmptyStatement",ma),e("BlockStatement",la,"body@body"),e("IfStatement",Ja,"test>condition, consequent>body, alternate>alternative"),e("LabeledStatement",oa,"label>label, body>body"),e("BreakStatement",Ha,"label>label"),e("ContinueStatement",Ia,"label>label"),e("WithStatement",va,"object>expression, body>body"),e("SwitchStatement",Ka,"discriminant>expression, cases@body"),e("ReturnStatement",Ea,"argument>value"),e("ThrowStatement",Fa,"argument>value"),e("WhileStatement",sa,"test>condition, body>body"),e("DoWhileStatement",ra,"test>condition, body>body"),e("ForStatement",ta,"init>init, test>condition, update>step, body>body"),e("ForInStatement",ua,"left>init, right>object, body>body"),e("DebuggerStatement",ha),e("VariableDeclarator",Ua,"id>name, init>value"),e("CatchClause",Pa,"param>argname, body%body"),e("ThisExpression",xb),e("BinaryExpression",cb,"operator=operator, left>left, right>right"),e("LogicalExpression",cb,"operator=operator, left>left, right>right"),e("AssignmentExpression",eb,"operator=operator, left>left, right>right"),e("ConditionalExpression",db,"test>condition, consequent>consequent, alternate>alternative"),e("NewExpression",Wa,"callee>expression, arguments@args"),e("CallExpression",Va,"callee>expression, arguments@args"),h(xa,function(a){return{type:"Program",body:a.body.map(i)}}),h(Ba,function(a){return{type:"FunctionDeclaration",id:i(a.name),params:a.argnames.map(i),body:j(a)}}),h(Aa,function(a){return{type:"FunctionExpression",id:i(a.name),params:a.argnames.map(i),body:j(a)}}),h(ia,function(a){return{type:"ExpressionStatement",expression:{type:"Literal",value:a.value}}}),h(ja,function(a){return{type:"ExpressionStatement",expression:i(a.body)}}),h(La,function(a){return{type:"SwitchCase",test:i(a.expression),consequent:a.body.map(i)}}),h(Oa,function(a){return{type:"TryStatement",block:j(a),handler:i(a.bcatch),guardedHandlers:[],finalizer:i(a.bfinally)}}),h(Pa,function(a){return{type:"CatchClause",param:i(a.argname),guard:null,body:j(a)}}),h(Ra,function(a){return{type:"VariableDeclaration",kind:a instanceof Ta?"const":"var",declarations:a.definitions.map(i)}}),h(Xa,function(a){return{type:"SequenceExpression",expressions:a.to_array().map(i)}}),h(Ya,function(a){var b=a instanceof $a;return{type:"MemberExpression",object:i(a.expression),computed:b,property:b?i(a.property):{type:"Identifier",name:a.property}}}),h(_a,function(a){return{type:"++"==a.operator||"--"==a.operator?"UpdateExpression":"UnaryExpression",operator:a.operator,prefix:a instanceof ab,argument:i(a.expression)}}),h(cb,function(a){return{type:"&&"==a.operator||"||"==a.operator?"LogicalExpression":"BinaryExpression",left:i(a.left),operator:a.operator,right:i(a.right)}}),h(fb,function(a){return{type:"ArrayExpression",elements:a.elements.map(i)}}),h(gb,function(a){return{type:"ObjectExpression",properties:a.properties.map(i)}}),h(hb,function(a){var b,c=K(a.key)?{type:"Identifier",name:a.key}:{type:"Literal",value:a.key};return a instanceof ib?b="init":a instanceof kb?b="get":a instanceof jb&&(b="set"),{type:"Property",kind:b,key:c,value:i(a.value)}}),h(lb,function(a){var b=a.definition();return{type:"Identifier",name:b?b.mangled_name||b.name:a.name}}),h(Bb,function(a){var b=a.value;return{type:"Literal",value:b,raw:b.toString(),regex:{pattern:b.source,flags:b.toString().match(/[gimuy]*$/)[0]}}}),h(yb,function(a){var b=a.value;return"number"==typeof b&&(b<0||0===b&&1/b<0)?{type:"UnaryExpression",operator:"-",prefix:!0,argument:{type:"Literal",value:-b,raw:a.start.raw}}:{type:"Literal",value:b,raw:a.start.raw}}),h(Cb,function(a){return{type:"Identifier",name:String(a.value)}}),Ib.DEFMETHOD("to_mozilla_ast",yb.prototype.to_mozilla_ast),Db.DEFMETHOD("to_mozilla_ast",yb.prototype.to_mozilla_ast),Gb.DEFMETHOD("to_mozilla_ast",function(){return null}),ka.DEFMETHOD("to_mozilla_ast",la.prototype.to_mozilla_ast),ya.DEFMETHOD("to_mozilla_ast",Aa.prototype.to_mozilla_ast);var m=null;fa.from_mozilla_ast=function(a){var b=m;m=[];var c=f(a);return m=b,c}}(),c.Compressor=Y,c.DefaultsError=k,c.Dictionary=y,c.JS_Parse_Error=P,c.MAP=da,c.OutputStream=X,c.SourceMap=Z,c.TreeTransformer=U,c.TreeWalker=D,c.base54=ec,c.defaults=l,c.mangle_properties=_,c.merge=m,c.parse=T,c.push_uniq=q,c.string_template=r,c.tokenizer=S,c.is_identifier=K,c.SymbolDef=V,"undefined"!=typeof DEBUG&&DEBUG&&(c.EXPECT_DIRECTIVE=fc),c.sys=aa,c.MOZ_SourceMap=ba,c.UglifyJS=ca,c.array_to_hash=d,c.slice=e,c.characters=f,c.member=g,c.find_if=h,c.repeat_string=i,c.configure_error_stack=j,c.DefaultsError=k,c.defaults=l,c.merge=m,c.noop=n,c.return_false=o,c.return_true=p,c.MAP=da,c.push_uniq=q,c.string_template=r,c.remove=s,c.mergeSort=t,c.set_difference=u,c.set_intersection=v,c.makePredicate=w,c.all=x,c.Dictionary=y,c.HOP=z,c.first_in_statement=A,c.DEFNODE=B,c.AST_Token=ea,c.AST_Node=fa,c.AST_Statement=ga,c.AST_Debugger=ha,c.AST_Directive=ia,c.AST_SimpleStatement=ja,c.walk_body=C,c.AST_Block=ka,c.AST_BlockStatement=la,c.AST_EmptyStatement=ma,c.AST_StatementWithBody=na,c.AST_LabeledStatement=oa,c.AST_IterationStatement=pa,c.AST_DWLoop=qa,c.AST_Do=ra,c.AST_While=sa,c.AST_For=ta,c.AST_ForIn=ua,c.AST_With=va,c.AST_Scope=wa,c.AST_Toplevel=xa,c.AST_Lambda=ya,c.AST_Accessor=za,c.AST_Function=Aa,c.AST_Defun=Ba,c.AST_Jump=Ca,c.AST_Exit=Da,c.AST_Return=Ea,c.AST_Throw=Fa,c.AST_LoopControl=Ga,c.AST_Break=Ha,c.AST_Continue=Ia,c.AST_If=Ja,c.AST_Switch=Ka,c.AST_SwitchBranch=La,c.AST_Default=Ma,c.AST_Case=Na,c.AST_Try=Oa,c.AST_Catch=Pa,c.AST_Finally=Qa,c.AST_Definitions=Ra,c.AST_Var=Sa,c.AST_Const=Ta,c.AST_VarDef=Ua,c.AST_Call=Va,c.AST_New=Wa,c.AST_Seq=Xa,c.AST_PropAccess=Ya,c.AST_Dot=Za,c.AST_Sub=$a,c.AST_Unary=_a,c.AST_UnaryPrefix=ab,c.AST_UnaryPostfix=bb,c.AST_Binary=cb,c.AST_Conditional=db,c.AST_Assign=eb,c.AST_Array=fb,c.AST_Object=gb,c.AST_ObjectProperty=hb,c.AST_ObjectKeyVal=ib,c.AST_ObjectSetter=jb,c.AST_ObjectGetter=kb,c.AST_Symbol=lb,c.AST_SymbolAccessor=mb,c.AST_SymbolDeclaration=nb,c.AST_SymbolVar=ob,c.AST_SymbolConst=pb,c.AST_SymbolFunarg=qb,c.AST_SymbolDefun=rb,c.AST_SymbolLambda=sb,c.AST_SymbolCatch=tb,c.AST_Label=ub,c.AST_SymbolRef=vb,c.AST_LabelRef=wb,c.AST_This=xb,c.AST_Constant=yb,c.AST_String=zb,c.AST_Number=Ab,c.AST_RegExp=Bb,c.AST_Atom=Cb,c.AST_Null=Db,c.AST_NaN=Eb,c.AST_Undefined=Fb,c.AST_Hole=Gb,c.AST_Infinity=Hb,c.AST_Boolean=Ib,c.AST_False=Jb,c.AST_True=Kb,c.TreeWalker=D,c.KEYWORDS=Lb,c.KEYWORDS_ATOM=Mb,c.RESERVED_WORDS=Nb,c.KEYWORDS_BEFORE_EXPRESSION=Ob,c.OPERATOR_CHARS=Pb,c.RE_HEX_NUMBER=Qb,c.RE_OCT_NUMBER=Rb,c.OPERATORS=Sb,c.WHITESPACE_CHARS=Tb,c.NEWLINE_CHARS=Ub,c.PUNC_BEFORE_EXPRESSION=Vb,c.PUNC_CHARS=Wb,c.REGEXP_MODIFIERS=Xb,c.UNICODE=Yb,c.is_letter=E,c.is_digit=F,c.is_alphanumeric_char=G,c.is_unicode_digit=H,c.is_unicode_combining_mark=I,c.is_unicode_connector_punctuation=J,c.is_identifier=K,c.is_identifier_start=L,c.is_identifier_char=M,c.is_identifier_string=N,c.parse_js_number=O,c.JS_Parse_Error=P,c.js_error=Q,c.is_token=R,c.EX_EOF=Zb,c.tokenizer=S,c.UNARY_PREFIX=$b,c.UNARY_POSTFIX=_b,c.ASSIGNMENT=ac,c.PRECEDENCE=bc,c.STATEMENTS_WITH_LABELS=cc,c.ATOMIC_START_TOKEN=dc,c.parse=T,c.TreeTransformer=U,c.SymbolDef=V,c.base54=ec,c.EXPECT_DIRECTIVE=fc,c.is_some_comments=W,c.OutputStream=X,c.Compressor=Y,c.SourceMap=Z,c.find_builtins=$,c.mangle_properties=_,c.AST_Node.warn_function=function(a){"undefined"!=typeof console&&"function"==typeof console.warn&&console.warn(a)},c.minify=function(a,c){function d(a,b){var d=c.fromString?a:fs.readFileSync(a,"utf8");"inline"==e&&(e=read_source_map(d)),g[b]=d,f=ca.parse(d,{filename:b,toplevel:f,bare_returns:c.parse?c.parse.bare_returns:void 0})}c=ca.defaults(c,{spidermonkey:!1,outSourceMap:null,outFileName:null,sourceRoot:null,inSourceMap:null,sourceMapUrl:null,sourceMapInline:!1,fromString:!1,warnings:!1,mangle:{},mangleProperties:!1,nameCache:null,output:null,compress:{},parse:{}}),ca.base54.reset();var e=c.inSourceMap;"string"==typeof e&&"inline"!=e&&(e=JSON.parse(fs.readFileSync(e,"utf8")));var f=null,g={};if(c.spidermonkey){if("inline"==e)throw new Error("inline source map only works with built-in parser");f=ca.AST_Node.from_mozilla_ast(a)}else{if(!c.fromString&&(a=ca.simple_glob(a),"inline"==e&&a.length>1))throw new Error("inline source map only works with singular input");[].concat(a).forEach(function(a,b){if("string"==typeof a)d(a,c.fromString?b:a);else for(var e in a)d(a[e],e)})}if(c.wrap&&(f=f.wrap_commonjs(c.wrap,c.exportAll)),c.compress){var h={warnings:c.warnings};ca.merge(h,c.compress),f.figure_out_scope(c.mangle);f=ca.Compressor(h).compress(f)}(c.mangleProperties||c.nameCache)&&(c.mangleProperties.cache=ca.readNameCache(c.nameCache,"props"),f=ca.mangle_properties(f,c.mangleProperties),ca.writeNameCache(c.nameCache,"props",c.mangleProperties.cache)),c.mangle&&(f.figure_out_scope(c.mangle),f.compute_char_frequency(c.mangle),f.mangle_names(c.mangle));var i={max_line_len:32e3};if((c.outSourceMap||c.sourceMapInline)&&(i.source_map=ca.SourceMap({file:c.outFileName||("string"==typeof c.outSourceMap?c.outSourceMap.replace(/\.map$/i,""):null),orig:e,root:c.sourceRoot}),c.sourceMapIncludeSources))for(var j in g)g.hasOwnProperty(j)&&i.source_map.get().setSourceContent(j,g[j]);c.output&&ca.merge(i,c.output);var k=ca.OutputStream(i);f.print(k);var l=i.source_map;l&&(l+="");return c.sourceMapInline?k+="\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,"+new b(l).toString("base64"):c.outSourceMap&&"string"==typeof c.outSourceMap&&c.sourceMapUrl!==!1&&(k+="\n//# sourceMappingURL="+("string"==typeof c.sourceMapUrl?c.sourceMapUrl:c.outSourceMap)),{code:k+"",map:l}},c.describe_ast=function(){function a(c){b.print("AST_"+c.TYPE);var d=c.SELF_PROPS.filter(function(a){return!/^\$/.test(a)});d.length>0&&(b.space(),b.with_parens(function(){d.forEach(function(a,c){c&&b.space(),b.print(a)})})),c.documentation&&(b.space(),b.print_string(c.documentation)),c.SUBCLASSES.length>0&&(b.space(),b.with_block(function(){c.SUBCLASSES.forEach(function(c,d){b.indent(),a(c),b.newline()})}))}var b=ca.OutputStream({beautify:!0});return a(ca.AST_Node),b+""}}).call(this,a("buffer").Buffer)},{buffer:5,"source-map":150,util:163}],158:[function(a,b,c){"use strict";function d(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}function e(a,b,c){if(a&&j.isObject(a)&&a instanceof d)return a;var e=new d;return e.parse(a,b,c),e}function f(a){return j.isString(a)&&(a=e(a)),a instanceof d?a.format():d.prototype.format.call(a)}function g(a,b){return e(a,!1,!0).resolve(b)}function h(a,b){return a?e(a,!1,!0).resolveObject(b):b}var i=a("punycode"),j=a("./util");c.parse=e,c.resolve=g,c.resolveObject=h,c.format=f,c.Url=d;var k=/^([a-z0-9.+-]+:)/i,l=/:[0-9]*$/,m=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,n=["<",">",'"',"`"," ","\r","\n","\t"],o=["{","}","|","\\","^","`"].concat(n),p=["'"].concat(o),q=["%","/","?",";","#"].concat(p),r=["/","?","#"],s={javascript:!0,"javascript:":!0},t={javascript:!0,"javascript:":!0},u={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0},v=a("querystring");d.prototype.parse=function(a,b,c){if(!j.isString(a))throw new TypeError("Parameter 'url' must be a string, not "+typeof a);var d=a.indexOf("?"),e=d!==-1&&d<a.indexOf("#")?"?":"#",f=a.split(e);f[0]=f[0].replace(/\\/g,"/"),a=f.join(e);var g=a;if(g=g.trim(),!c&&1===a.split("#").length){var h=m.exec(g);if(h)return this.path=g,this.href=g,this.pathname=h[1],h[2]?(this.search=h[2],this.query=b?v.parse(this.search.substr(1)):this.search.substr(1)):b&&(this.search="",this.query={}),this}var l=k.exec(g);if(l){l=l[0];var n=l.toLowerCase();this.protocol=n,g=g.substr(l.length)}if(c||l||g.match(/^\/\/[^@\/]+@[^@\/]+/)){var o="//"===g.substr(0,2);!o||l&&t[l]||(g=g.substr(2),this.slashes=!0)}if(!t[l]&&(o||l&&!u[l])){for(var w=-1,x=0;x<r.length;x++){var y=g.indexOf(r[x]);y!==-1&&(w===-1||y<w)&&(w=y)}var z,A;A=w===-1?g.lastIndexOf("@"):g.lastIndexOf("@",w),A!==-1&&(z=g.slice(0,A),g=g.slice(A+1),this.auth=decodeURIComponent(z)),w=-1;for(var x=0;x<q.length;x++){var y=g.indexOf(q[x]);y!==-1&&(w===-1||y<w)&&(w=y)}w===-1&&(w=g.length),this.host=g.slice(0,w),g=g.slice(w),this.parseHost(),this.hostname=this.hostname||"";var B="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!B)for(var C=this.hostname.split(/\./),x=0,D=C.length;x<D;x++){var E=C[x];if(E&&!E.match(/^[+a-z0-9A-Z_-]{0,63}$/)){for(var F="",G=0,H=E.length;G<H;G++)F+=E.charCodeAt(G)>127?"x":E[G];if(!F.match(/^[+a-z0-9A-Z_-]{0,63}$/)){var I=C.slice(0,x),J=C.slice(x+1),K=E.match(/^([+a-z0-9A-Z_-]{0,63})(.*)$/);K&&(I.push(K[1]),J.unshift(K[2])),J.length&&(g="/"+J.join(".")+g),this.hostname=I.join(".");break}}}this.hostname.length>255?this.hostname="":this.hostname=this.hostname.toLowerCase(),B||(this.hostname=i.toASCII(this.hostname));var L=this.port?":"+this.port:"",M=this.hostname||"";this.host=M+L,this.href+=this.host,B&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),"/"!==g[0]&&(g="/"+g))}if(!s[n])for(var x=0,D=p.length;x<D;x++){var N=p[x];if(g.indexOf(N)!==-1){var O=encodeURIComponent(N);O===N&&(O=escape(N)),g=g.split(N).join(O)}}var P=g.indexOf("#");P!==-1&&(this.hash=g.substr(P),g=g.slice(0,P));var Q=g.indexOf("?");if(Q!==-1?(this.search=g.substr(Q),this.query=g.substr(Q+1),b&&(this.query=v.parse(this.query)),g=g.slice(0,Q)):b&&(this.search="",this.query={}),g&&(this.pathname=g),u[n]&&this.hostname&&!this.pathname&&(this.pathname="/"),this.pathname||this.search){var L=this.pathname||"",R=this.search||"";this.path=L+R}return this.href=this.format(),this},d.prototype.format=function(){var a=this.auth||"";a&&(a=encodeURIComponent(a),a=a.replace(/%3A/i,":"),a+="@");var b=this.protocol||"",c=this.pathname||"",d=this.hash||"",e=!1,f="";this.host?e=a+this.host:this.hostname&&(e=a+(this.hostname.indexOf(":")===-1?this.hostname:"["+this.hostname+"]"),this.port&&(e+=":"+this.port)),this.query&&j.isObject(this.query)&&Object.keys(this.query).length&&(f=v.stringify(this.query));var g=this.search||f&&"?"+f||"";return b&&":"!==b.substr(-1)&&(b+=":"),this.slashes||(!b||u[b])&&e!==!1?(e="//"+(e||""),c&&"/"!==c.charAt(0)&&(c="/"+c)):e||(e=""),d&&"#"!==d.charAt(0)&&(d="#"+d),g&&"?"!==g.charAt(0)&&(g="?"+g),c=c.replace(/[?#]/g,function(a){return encodeURIComponent(a)}),g=g.replace("#","%23"),b+e+c+g+d},d.prototype.resolve=function(a){return this.resolveObject(e(a,!1,!0)).format()},d.prototype.resolveObject=function(a){if(j.isString(a)){var b=new d;b.parse(a,!1,!0),a=b}for(var c=new d,e=Object.keys(this),f=0;f<e.length;f++){var g=e[f];c[g]=this[g]}if(c.hash=a.hash,""===a.href)return c.href=c.format(),c;if(a.slashes&&!a.protocol){for(var h=Object.keys(a),i=0;i<h.length;i++){var k=h[i];"protocol"!==k&&(c[k]=a[k])}return u[c.protocol]&&c.hostname&&!c.pathname&&(c.path=c.pathname="/"),c.href=c.format(),c}if(a.protocol&&a.protocol!==c.protocol){if(!u[a.protocol]){for(var l=Object.keys(a),m=0;m<l.length;m++){var n=l[m];c[n]=a[n]}return c.href=c.format(),c}if(c.protocol=a.protocol,a.host||t[a.protocol])c.pathname=a.pathname;else{for(var o=(a.pathname||"").split("/");o.length&&!(a.host=o.shift()););a.host||(a.host=""),a.hostname||(a.hostname=""),""!==o[0]&&o.unshift(""),o.length<2&&o.unshift(""),c.pathname=o.join("/")}if(c.search=a.search,c.query=a.query,c.host=a.host||"",c.auth=a.auth,c.hostname=a.hostname||a.host,c.port=a.port,c.pathname||c.search){var p=c.pathname||"",q=c.search||"";c.path=p+q}return c.slashes=c.slashes||a.slashes,c.href=c.format(),c}var r=c.pathname&&"/"===c.pathname.charAt(0),s=a.host||a.pathname&&"/"===a.pathname.charAt(0),v=s||r||c.host&&a.pathname,w=v,x=c.pathname&&c.pathname.split("/")||[],o=a.pathname&&a.pathname.split("/")||[],y=c.protocol&&!u[c.protocol];if(y&&(c.hostname="",c.port=null,c.host&&(""===x[0]?x[0]=c.host:x.unshift(c.host)),c.host="",a.protocol&&(a.hostname=null,a.port=null,a.host&&(""===o[0]?o[0]=a.host:o.unshift(a.host)),a.host=null),v=v&&(""===o[0]||""===x[0])),s)c.host=a.host||""===a.host?a.host:c.host,c.hostname=a.hostname||""===a.hostname?a.hostname:c.hostname,c.search=a.search,c.query=a.query,x=o;else if(o.length)x||(x=[]),x.pop(),x=x.concat(o),c.search=a.search,c.query=a.query;else if(!j.isNullOrUndefined(a.search)){if(y){c.hostname=c.host=x.shift();var z=!!(c.host&&c.host.indexOf("@")>0)&&c.host.split("@");z&&(c.auth=z.shift(),c.host=c.hostname=z.shift())}return c.search=a.search,c.query=a.query,j.isNull(c.pathname)&&j.isNull(c.search)||(c.path=(c.pathname?c.pathname:"")+(c.search?c.search:"")),c.href=c.format(),c}if(!x.length)return c.pathname=null,c.search?c.path="/"+c.search:c.path=null,c.href=c.format(),c;for(var A=x.slice(-1)[0],B=(c.host||a.host||x.length>1)&&("."===A||".."===A)||""===A,C=0,D=x.length;D>=0;D--)A=x[D],"."===A?x.splice(D,1):".."===A?(x.splice(D,1),C++):C&&(x.splice(D,1),C--);if(!v&&!w)for(;C--;C)x.unshift("..");!v||""===x[0]||x[0]&&"/"===x[0].charAt(0)||x.unshift(""),B&&"/"!==x.join("/").substr(-1)&&x.push("");var E=""===x[0]||x[0]&&"/"===x[0].charAt(0);if(y){c.hostname=c.host=E?"":x.length?x.shift():"";var z=!!(c.host&&c.host.indexOf("@")>0)&&c.host.split("@");z&&(c.auth=z.shift(),c.host=c.hostname=z.shift())}return v=v||c.host&&x.length,v&&!E&&x.unshift(""),x.length?c.pathname=x.join("/"):(c.pathname=null,c.path=null),j.isNull(c.pathname)&&j.isNull(c.search)||(c.path=(c.pathname?c.pathname:"")+(c.search?c.search:"")),c.auth=a.auth||c.auth,c.slashes=c.slashes||a.slashes,c.href=c.format(),c},d.prototype.parseHost=function(){var a=this.host,b=l.exec(a);b&&(b=b[0],":"!==b&&(this.port=b.substr(1)),a=a.substr(0,a.length-b.length)),a&&(this.hostname=a)}},{"./util":159,punycode:112,querystring:115}],159:[function(a,b,c){"use strict";b.exports={isString:function(a){return"string"==typeof a},isObject:function(a){return"object"==typeof a&&null!==a},isNull:function(a){return null===a},isNullOrUndefined:function(a){return null==a}}},{}],160:[function(a,b,c){(function(a){function c(a,b){function c(){if(!e){if(d("throwDeprecation"))throw new Error(b);d("traceDeprecation")?console.trace(b):console.warn(b),e=!0}return a.apply(this,arguments)}if(d("noDeprecation"))return a;var e=!1;return c}function d(b){try{if(!a.localStorage)return!1}catch(a){return!1}var c=a.localStorage[b];return null!=c&&"true"===String(c).toLowerCase()}b.exports=c}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{}],161:[function(a,b,c){arguments[4][104][0].apply(c,arguments)},{dup:104}],162:[function(a,b,c){b.exports=function(a){return a&&"object"==typeof a&&"function"==typeof a.copy&&"function"==typeof a.fill&&"function"==typeof a.readUInt8}},{}],163:[function(a,b,c){(function(b,d){function e(a,b){var d={seen:[],stylize:g};return arguments.length>=3&&(d.depth=arguments[2]),arguments.length>=4&&(d.colors=arguments[3]),p(b)?d.showHidden=b:b&&c._extend(d,b),v(d.showHidden)&&(d.showHidden=!1),v(d.depth)&&(d.depth=2),v(d.colors)&&(d.colors=!1),v(d.customInspect)&&(d.customInspect=!0),d.colors&&(d.stylize=f),i(d,a,d.depth)}function f(a,b){var c=e.styles[b];return c?"\e["+e.colors[c][0]+"m"+a+"\e["+e.colors[c][1]+"m":a}function g(a,b){return a}function h(a){var b={};return a.forEach(function(a,c){b[a]=!0}),b}function i(a,b,d){if(a.customInspect&&b&&A(b.inspect)&&b.inspect!==c.inspect&&(!b.constructor||b.constructor.prototype!==b)){var e=b.inspect(d,a);return t(e)||(e=i(a,e,d)),e}var f=j(a,b);if(f)return f;var g=Object.keys(b),p=h(g);if(a.showHidden&&(g=Object.getOwnPropertyNames(b)),z(b)&&(g.indexOf("message")>=0||g.indexOf("description")>=0))return k(b);if(0===g.length){if(A(b)){var q=b.name?": "+b.name:"";return a.stylize("[Function"+q+"]","special")}if(w(b))return a.stylize(RegExp.prototype.toString.call(b),"regexp");if(y(b))return a.stylize(Date.prototype.toString.call(b),"date");if(z(b))return k(b)}var r="",s=!1,u=["{","}"];if(o(b)&&(s=!0,u=["[","]"]),A(b)){r=" [Function"+(b.name?": "+b.name:"")+"]"}if(w(b)&&(r=" "+RegExp.prototype.toString.call(b)),y(b)&&(r=" "+Date.prototype.toUTCString.call(b)),z(b)&&(r=" "+k(b)),0===g.length&&(!s||0==b.length))return u[0]+r+u[1];if(d<0)return w(b)?a.stylize(RegExp.prototype.toString.call(b),"regexp"):a.stylize("[Object]","special");a.seen.push(b);var v;return v=s?l(a,b,d,p,g):g.map(function(c){return m(a,b,d,p,c,s)}),a.seen.pop(),n(v,r,u)}function j(a,b){if(v(b))return a.stylize("undefined","undefined");if(t(b)){var c="'"+JSON.stringify(b).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return a.stylize(c,"string")}return s(b)?a.stylize(""+b,"number"):p(b)?a.stylize(""+b,"boolean"):q(b)?a.stylize("null","null"):void 0}function k(a){return"["+Error.prototype.toString.call(a)+"]"}function l(a,b,c,d,e){for(var f=[],g=0,h=b.length;g<h;++g)F(b,String(g))?f.push(m(a,b,c,d,String(g),!0)):f.push("");return e.forEach(function(e){e.match(/^\d+$/)||f.push(m(a,b,c,d,e,!0))}),f}function m(a,b,c,d,e,f){var g,h,j;if(j=Object.getOwnPropertyDescriptor(b,e)||{value:b[e]},j.get?h=j.set?a.stylize("[Getter/Setter]","special"):a.stylize("[Getter]","special"):j.set&&(h=a.stylize("[Setter]","special")),F(d,e)||(g="["+e+"]"),h||(a.seen.indexOf(j.value)<0?(h=q(c)?i(a,j.value,null):i(a,j.value,c-1),h.indexOf("\n")>-1&&(h=f?h.split("\n").map(function(a){return"  "+a}).join("\n").substr(2):"\n"+h.split("\n").map(function(a){return"   "+a}).join("\n"))):h=a.stylize("[Circular]","special")),v(g)){if(f&&e.match(/^\d+$/))return h;g=JSON.stringify(""+e),g.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(g=g.substr(1,g.length-2),g=a.stylize(g,"name")):(g=g.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),g=a.stylize(g,"string"))}return g+": "+h}function n(a,b,c){var d=0;return a.reduce(function(a,b){return d++,b.indexOf("\n")>=0&&d++,a+b.replace(/\u001b\[\d\d?m/g,"").length+1},0)>60?c[0]+(""===b?"":b+"\n ")+" "+a.join(",\n  ")+" "+c[1]:c[0]+b+" "+a.join(", ")+" "+c[1]}function o(a){return Array.isArray(a)}function p(a){return"boolean"==typeof a}function q(a){return null===a}function r(a){return null==a}function s(a){return"number"==typeof a}function t(a){return"string"==typeof a}function u(a){return"symbol"==typeof a}function v(a){return void 0===a}function w(a){return x(a)&&"[object RegExp]"===C(a)}function x(a){return"object"==typeof a&&null!==a}function y(a){return x(a)&&"[object Date]"===C(a)}function z(a){return x(a)&&("[object Error]"===C(a)||a instanceof Error)}function A(a){return"function"==typeof a}function B(a){return null===a||"boolean"==typeof a||"number"==typeof a||"string"==typeof a||"symbol"==typeof a||void 0===a}function C(a){return Object.prototype.toString.call(a)}function D(a){
+return a<10?"0"+a.toString(10):a.toString(10)}function E(){var a=new Date,b=[D(a.getHours()),D(a.getMinutes()),D(a.getSeconds())].join(":");return[a.getDate(),I[a.getMonth()],b].join(" ")}function F(a,b){return Object.prototype.hasOwnProperty.call(a,b)}c.format=function(a){if(!t(a)){for(var b=[],c=0;c<arguments.length;c++)b.push(e(arguments[c]));return b.join(" ")}for(var c=1,d=arguments,f=d.length,g=String(a).replace(/%[sdj%]/g,function(a){if("%%"===a)return"%";if(c>=f)return a;switch(a){case"%s":return String(d[c++]);case"%d":return Number(d[c++]);case"%j":try{return JSON.stringify(d[c++])}catch(a){return"[Circular]"}default:return a}}),h=d[c];c<f;h=d[++c])g+=q(h)||!x(h)?" "+h:" "+e(h);return g},c.deprecate=function(a,e){function f(){if(!g){if(b.throwDeprecation)throw new Error(e);b.traceDeprecation?console.trace(e):console.error(e),g=!0}return a.apply(this,arguments)}if(v(d.process))return function(){return c.deprecate(a,e).apply(this,arguments)};if(b.noDeprecation===!0)return a;var g=!1;return f};var G,H={};c.debuglog=function(a){if(v(G)&&(G=b.env.NODE_DEBUG||""),a=a.toUpperCase(),!H[a])if(new RegExp("\\b"+a+"\\b","i").test(G)){var d=b.pid;H[a]=function(){var b=c.format.apply(c,arguments);console.error("%s %d: %s",a,d,b)}}else H[a]=function(){};return H[a]},c.inspect=e,e.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},e.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},c.isArray=o,c.isBoolean=p,c.isNull=q,c.isNullOrUndefined=r,c.isNumber=s,c.isString=t,c.isSymbol=u,c.isUndefined=v,c.isRegExp=w,c.isObject=x,c.isDate=y,c.isError=z,c.isFunction=A,c.isPrimitive=B,c.isBuffer=a("./support/isBuffer");var I=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];c.log=function(){console.log("%s - %s",E(),c.format.apply(c,arguments))},c.inherits=a("inherits"),c._extend=function(a,b){if(!b||!x(b))return a;for(var c=Object.keys(b),d=c.length;d--;)a[c[d]]=b[c[d]];return a}}).call(this,a("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./support/isBuffer":162,_process:111,inherits:161}],164:[function(a,b,c){c.baseChar=/[A-Za-z\xC0-\xD6\xD8-\xF6\xF8-\u0131\u0134-\u013E\u0141-\u0148\u014A-\u017E\u0180-\u01C3\u01CD-\u01F0\u01F4\u01F5\u01FA-\u0217\u0250-\u02A8\u02BB-\u02C1\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03CE\u03D0-\u03D6\u03DA\u03DC\u03DE\u03E0\u03E2-\u03F3\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E-\u0481\u0490-\u04C4\u04C7\u04C8\u04CB\u04CC\u04D0-\u04EB\u04EE-\u04F5\u04F8\u04F9\u0531-\u0556\u0559\u0561-\u0586\u05D0-\u05EA\u05F0-\u05F2\u0621-\u063A\u0641-\u064A\u0671-\u06B7\u06BA-\u06BE\u06C0-\u06CE\u06D0-\u06D3\u06D5\u06E5\u06E6\u0905-\u0939\u093D\u0958-\u0961\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8B\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AE0\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B36-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB5\u0BB7-\u0BB9\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CDE\u0CE0\u0CE1\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D28\u0D2A-\u0D39\u0D60\u0D61\u0E01-\u0E2E\u0E30\u0E32\u0E33\u0E40-\u0E45\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD\u0EAE\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0F40-\u0F47\u0F49-\u0F69\u10A0-\u10C5\u10D0-\u10F6\u1100\u1102\u1103\u1105-\u1107\u1109\u110B\u110C\u110E-\u1112\u113C\u113E\u1140\u114C\u114E\u1150\u1154\u1155\u1159\u115F-\u1161\u1163\u1165\u1167\u1169\u116D\u116E\u1172\u1173\u1175\u119E\u11A8\u11AB\u11AE\u11AF\u11B7\u11B8\u11BA\u11BC-\u11C2\u11EB\u11F0\u11F9\u1E00-\u1E9B\u1EA0-\u1EF9\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2126\u212A\u212B\u212E\u2180-\u2182\u3041-\u3094\u30A1-\u30FA\u3105-\u312C\uAC00-\uD7A3]/,c.ideographic=/[\u3007\u3021-\u3029\u4E00-\u9FA5]/,c.letter=/[A-Za-z\xC0-\xD6\xD8-\xF6\xF8-\u0131\u0134-\u013E\u0141-\u0148\u014A-\u017E\u0180-\u01C3\u01CD-\u01F0\u01F4\u01F5\u01FA-\u0217\u0250-\u02A8\u02BB-\u02C1\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03CE\u03D0-\u03D6\u03DA\u03DC\u03DE\u03E0\u03E2-\u03F3\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E-\u0481\u0490-\u04C4\u04C7\u04C8\u04CB\u04CC\u04D0-\u04EB\u04EE-\u04F5\u04F8\u04F9\u0531-\u0556\u0559\u0561-\u0586\u05D0-\u05EA\u05F0-\u05F2\u0621-\u063A\u0641-\u064A\u0671-\u06B7\u06BA-\u06BE\u06C0-\u06CE\u06D0-\u06D3\u06D5\u06E5\u06E6\u0905-\u0939\u093D\u0958-\u0961\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8B\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AE0\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B36-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB5\u0BB7-\u0BB9\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C33\u0C35-\u0C39\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CDE\u0CE0\u0CE1\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D28\u0D2A-\u0D39\u0D60\u0D61\u0E01-\u0E2E\u0E30\u0E32\u0E33\u0E40-\u0E45\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD\u0EAE\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0F40-\u0F47\u0F49-\u0F69\u10A0-\u10C5\u10D0-\u10F6\u1100\u1102\u1103\u1105-\u1107\u1109\u110B\u110C\u110E-\u1112\u113C\u113E\u1140\u114C\u114E\u1150\u1154\u1155\u1159\u115F-\u1161\u1163\u1165\u1167\u1169\u116D\u116E\u1172\u1173\u1175\u119E\u11A8\u11AB\u11AE\u11AF\u11B7\u11B8\u11BA\u11BC-\u11C2\u11EB\u11F0\u11F9\u1E00-\u1E9B\u1EA0-\u1EF9\u1F00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2126\u212A\u212B\u212E\u2180-\u2182\u3007\u3021-\u3029\u3041-\u3094\u30A1-\u30FA\u3105-\u312C\u4E00-\u9FA5\uAC00-\uD7A3]/,c.combiningChar=/[\u0300-\u0345\u0360\u0361\u0483-\u0486\u0591-\u05A1\u05A3-\u05B9\u05BB-\u05BD\u05BF\u05C1\u05C2\u05C4\u064B-\u0652\u0670\u06D6-\u06E4\u06E7\u06E8\u06EA-\u06ED\u0901-\u0903\u093C\u093E-\u094D\u0951-\u0954\u0962\u0963\u0981-\u0983\u09BC\u09BE-\u09C4\u09C7\u09C8\u09CB-\u09CD\u09D7\u09E2\u09E3\u0A02\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A70\u0A71\u0A81-\u0A83\u0ABC\u0ABE-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0B01-\u0B03\u0B3C\u0B3E-\u0B43\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B82\u0B83\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD7\u0C01-\u0C03\u0C3E-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C82\u0C83\u0CBE-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0D02\u0D03\u0D3E-\u0D43\u0D46-\u0D48\u0D4A-\u0D4D\u0D57\u0E31\u0E34-\u0E3A\u0E47-\u0E4E\u0EB1\u0EB4-\u0EB9\u0EBB\u0EBC\u0EC8-\u0ECD\u0F18\u0F19\u0F35\u0F37\u0F39\u0F3E\u0F3F\u0F71-\u0F84\u0F86-\u0F8B\u0F90-\u0F95\u0F97\u0F99-\u0FAD\u0FB1-\u0FB7\u0FB9\u20D0-\u20DC\u20E1\u302A-\u302F\u3099\u309A]/,c.digit=/[0-9\u0660-\u0669\u06F0-\u06F9\u0966-\u096F\u09E6-\u09EF\u0A66-\u0A6F\u0AE6-\u0AEF\u0B66-\u0B6F\u0BE7-\u0BEF\u0C66-\u0C6F\u0CE6-\u0CEF\u0D66-\u0D6F\u0E50-\u0E59\u0ED0-\u0ED9\u0F20-\u0F29]/,c.extender=/[\xB7\u02D0\u02D1\u0387\u0640\u0E46\u0EC6\u3005\u3031-\u3035\u309D\u309E\u30FC-\u30FE]/},{}],165:[function(a,b,c){function d(){for(var a={},b=0;b<arguments.length;b++){var c=arguments[b];for(var d in c)e.call(c,d)&&(a[d]=c[d])}return a}b.exports=d;var e=Object.prototype.hasOwnProperty},{}],166:[function(a,b,c){"use strict";function d(a){return h(a,!0)}function e(a){var b=i.source+"(?:\\s*("+f(a)+")\\s*(?:"+k.join("|")+"))?";if(a.customAttrSurround){for(var c=[],d=a.customAttrSurround.length-1;d>=0;d--)c[d]="(?:("+a.customAttrSurround[d][0].source+")\\s*"+b+"\\s*("+a.customAttrSurround[d][1].source+"))";c.push("(?:"+b+")"),b="(?:"+c.join("|")+")"}return new RegExp("^\\s*"+b)}function f(a){return j.concat(a.customAttrAssign||[]).map(function(a){return"(?:"+a.source+")"}).join("|")}function g(a,b){function c(a){var b=a.match(m);if(b){var c={tagName:b[1],attrs:[]};a=a.slice(b[0].length);for(var d,e;!(d=a.match(n))&&(e=a.match(k));)a=a.slice(e[0].length),c.attrs.push(e);if(d)return c.unarySlash=d[1],c.rest=a.slice(d[0].length),c}}function d(a,c){var d;if(c){var e=c.toLowerCase();for(d=j.length-1;d>=0&&j[d].tag.toLowerCase()!==e;d--);}else d=0;if(d>=0){for(var g=j.length-1;g>=d;g--)b.end&&b.end(j[g].tag,j[g].attrs,g>d||!a);j.length=d,f=d&&j[d-1].tag}else"br"===c.toLowerCase()?b.start&&b.start(c,[],!0,""):"p"===c.toLowerCase()&&(b.start&&b.start(c,[],!1,"",!0),b.end&&b.end(c,[]))}for(var f,g,h,i,j=[],k=e(b);a;){if(g=a,f&&v(f)){var l=f.toLowerCase(),y=x[l]||(x[l]=new RegExp("([\\s\\S]*?)</"+l+"[^>]*>","i"));a=a.replace(y,function(a,c){return"script"!==l&&"style"!==l&&"noscript"!==l&&(c=c.replace(/<!--([\s\S]*?)-->/g,"$1").replace(/<!\[CDATA\[([\s\S]*?)]]>/g,"$1")),b.chars&&b.chars(c),""}),d("</"+l+">",l)}else{var z=a.indexOf("<");if(0===z){if(/^<!--/.test(a)){var A=a.indexOf("-->");if(A>=0){b.comment&&b.comment(a.substring(4,A)),a=a.substring(A+3),h="";continue}}if(/^<!\[/.test(a)){var B=a.indexOf("]>");if(B>=0){b.comment&&b.comment(a.substring(2,B+1),!0),a=a.substring(B+2),h="";continue}}var C=a.match(p);if(C){b.doctype&&b.doctype(C[0]),a=a.substring(C[0].length),h="";continue}var D=a.match(o);if(D){a=a.substring(D[0].length),D[0].replace(o,d),h="/"+D[1].toLowerCase();continue}var E=c(a);if(E){a=E.rest,function(a){var c=a.tagName,e=a.unarySlash;if(b.html5&&"p"===f&&w(c)&&d("",f),!b.html5)for(;f&&s(f);)d("",f);t(c)&&f===c&&d("",c);var g=r(c)||"html"===c&&"head"===f||!!e,h=a.attrs.map(function(a){function c(b){return h=a[b],void 0!==(e=a[b+1])?'"':void 0!==(e=a[b+2])?"'":(e=a[b+3],void 0===e&&u(d)&&(e=d),"")}var d,e,f,g,h,i;q&&a[0].indexOf('""')===-1&&(""===a[3]&&delete a[3],""===a[4]&&delete a[4],""===a[5]&&delete a[5]);var j=1;if(b.customAttrSurround)for(var k=0,l=b.customAttrSurround.length;k<l;k++,j+=7)if(d=a[j+1]){i=c(j+2),f=a[j],g=a[j+6];break}return!d&&(d=a[j])&&(i=c(j+1)),{name:d,value:e,customAssign:h||"=",customOpen:f||"",customClose:g||"",quote:i||""}});g||(j.push({tag:c,attrs:h}),f=c,e=""),b.start&&b.start(c,h,g,e)}(E),h=E.tagName.toLowerCase();continue}}var F;z>=0?(F=a.substring(0,z),a=a.substring(z)):(F=a,a="");var G=c(a);G?i=G.tagName:(G=a.match(o),i=G?"/"+G[1]:""),b.chars&&b.chars(F,h,i),h=""}if(a===g)throw new Error("Parse Error: "+a)}b.partialMarkup||d()}var h=a("./utils").createMapFromString,i=/([^\s"'<>\/=]+)/,j=[/=/],k=[/"([^"]*)"+/.source,/'([^']*)'+/.source,/([^\s"'=<>`]+)/.source],l=function(){var b=a("ncname").source.slice(1,-1);return"((?:"+b+"\\:)?"+b+")"}(),m=new RegExp("^<"+l),n=/^\s*(\/?)>/,o=new RegExp("^<\\/"+l+"[^>]*>"),p=/^<!DOCTYPE [^>]+>/i,q=!1;"x".replace(/x(.)?/g,function(a,b){q=""===b});var r=d("area,base,basefont,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),s=d("a,abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,noscript,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,svg,textarea,tt,u,var"),t=d("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),u=d("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected"),v=d("script,style"),w=d("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),x={};c.HTMLParser=g,c.HTMLtoXML=function(a){var b="";return new g(a,{start:function(a,c,d){b+="<"+a;for(var e=0,f=c.length;e<f;e++)b+=" "+c[e].name+'="'+(c[e].value||"").replace(/"/g,"&#34;")+'"';b+=(d?"/":"")+">"},end:function(a){b+="</"+a+">"},chars:function(a){b+=a},comment:function(a){b+="<!--"+a+"-->"},ignore:function(a){b+=a}}),b},c.HTMLtoDOM=function(a,b){var c={html:!0,head:!0,body:!0,title:!0},d={link:"head",base:"head"};b?b=b.ownerDocument||b.getOwnerDocument&&b.getOwnerDocument()||b:"undefined"!=typeof DOMDocument?b=new DOMDocument:"undefined"!=typeof document&&document.implementation&&document.implementation.createDocument?b=document.implementation.createDocument("","",null):"undefined"!=typeof ActiveX&&(b=new ActiveXObject("Msxml.DOMDocument"));var e=[];if(!(b.documentElement||b.getDocumentElement&&b.getDocumentElement())&&b.createElement&&function(){var a=b.createElement("html"),c=b.createElement("head");c.appendChild(b.createElement("title")),a.appendChild(c),a.appendChild(b.createElement("body")),b.appendChild(a)}(),b.getElementsByTagName)for(var f in c)c[f]=b.getElementsByTagName(f)[0];var h=c.body;return new g(a,{start:function(a,f,g){if(c[a])return void(h=c[a]);var i=b.createElement(a);for(var j in f)i.setAttribute(f[j].name,f[j].value);d[a]&&"boolean"!=typeof c[d[a]]?c[d[a]].appendChild(i):h&&h.appendChild&&h.appendChild(i),g||(e.push(i),h=i)},end:function(){e.length-=1,h=e[e.length-1]},chars:function(a){h.appendChild(b.createTextNode(a))},comment:function(){},ignore:function(){}}),b}},{"./utils":168,ncname:107}],167:[function(a,b,c){"use strict";function d(){}function e(){}d.prototype.sort=function(a,b){b=b||0;for(var c=0,d=this.tokens.length;c<d;c++){var e=this.tokens[c],f=a.indexOf(e,b);if(f!==-1){do{f!==b&&(a.splice(f,1),a.splice(b,0,e)),b++}while((f=a.indexOf(e,b))!==-1);return this[e].sort(a,b)}}return a},e.prototype={add:function(a){var b=this;a.forEach(function(c){b[c]||(b[c]=[],b[c].processed=0),b[c].push(a)})},createSorter:function(){var a=this,b=new d;return b.tokens=Object.keys(this).sort(function(b,c){var d=a[b].length,e=a[c].length;return d<e?1:d>e?-1:b<c?-1:b>c?1:0}).filter(function(c){if(a[c].processed<a[c].length){var d=new e;return a[c].forEach(function(b){for(var e;(e=b.indexOf(c))!==-1;)b.splice(e,1);b.forEach(function(b){a[b].processed++}),d.add(b.slice(0))}),b[c]=d.createSorter(),!0}return!1}),b}},b.exports=e},{}],168:[function(a,b,c){"use strict";function d(a,b){var c={};return a.forEach(function(a){c[a]=1}),b?function(a){return 1===c[a.toLowerCase()]}:function(a){return 1===c[a]}}c.createMap=d,c.createMapFromString=function(a,b){return d(a.split(/,/),b)}},{}],"html-minifier":[function(a,b,c){"use strict";function d(a){return a&&a.replace(/\s+/g,function(a){return"\t"===a?"\t":a.replace(/(^|\xA0+)[^\xA0]+/g,"$1 ")})}function e(a,b,c,e,f){var g="",h="";return b.preserveLineBreaks&&(a=a.replace(/^\s*?[\n\r]\s*/,function(){return g="\n",""}).replace(/\s*?[\n\r]\s*$/,function(){return h="\n",""})),c&&(a=a.replace(/^\s+/,function(a){var c=!g&&b.conservativeCollapse;return c&&"\t"===a?"\t":a.replace(/^[^\xA0]+/,"").replace(/(\xA0+)[^\xA0]+/g,"$1 ")||(c?" ":"")})),e&&(a=a.replace(/\s+$/,function(a){var c=!h&&b.conservativeCollapse;return c&&"\t"===a?"\t":a.replace(/[^\xA0]+(\xA0+)/g," $1").replace(/[^\xA0]+$/,"")||(c?" ":"")})),f&&(a=d(a)),g+a+h}function f(a,b,c,d){var f=b&&!da(b);f&&!d.collapseInlineTagWhitespace&&(f="/"===b.charAt(0)?!ba(b.slice(1)):!ca(b));var g=c&&!da(c);return g&&!d.collapseInlineTagWhitespace&&(g="/"===c.charAt(0)?!ca(c.slice(1)):!ba(c)),e(a,d,f,g,b&&c)}function g(a){return/^\[if\s[^\]]+]|\[endif]$/.test(a)}function h(a,b){for(var c=0,d=b.ignoreCustomComments.length;c<d;c++)if(b.ignoreCustomComments[c].test(a))return!0;return!1}function i(a,b){var c=b.customEventAttributes;if(c){for(var d=c.length;d--;)if(c[d].test(a))return!0;return!1}return/^on[a-z]{3,}$/.test(a)}function j(a){return/^[^ \t\n\f\r"'`=<>]+$/.test(a)}function k(a,b){for(var c=a.length;c--;)if(a[c].name.toLowerCase()===b)return!0;return!1}function l(a,b,c,d){return c=c?_(c.toLowerCase()):"","script"===a&&"language"===b&&"javascript"===c||"form"===a&&"method"===b&&"get"===c||"input"===a&&"type"===b&&"text"===c||"script"===a&&"charset"===b&&!k(d,"src")||"a"===a&&"name"===b&&k(d,"id")||"area"===a&&"shape"===b&&"rect"===c}function m(a){return""===(a=_(a.split(/;/,2)[0]).toLowerCase())||ea(a)}function n(a,b){if("script"!==a)return!1;for(var c=0,d=b.length;c<d;c++){if("type"===b[c].name.toLowerCase())return m(b[c].value)}return!0}function o(a){return""===(a=_(a).toLowerCase())||"text/css"===a}function p(a,b){if("style"!==a)return!1;for(var c=0,d=b.length;c<d;c++){if("type"===b[c].name.toLowerCase())return o(b[c].value)}return!0}function q(a,b){return fa(a)||"draggable"===a&&!ga(b)}function r(a,b){return/^(?:a|area|link|base)$/.test(b)&&"href"===a||"img"===b&&/^(?:src|longdesc|usemap)$/.test(a)||"object"===b&&/^(?:classid|codebase|data|usemap)$/.test(a)||"q"===b&&"cite"===a||"blockquote"===b&&"cite"===a||("ins"===b||"del"===b)&&"cite"===a||"form"===b&&"action"===a||"input"===b&&("src"===a||"usemap"===a)||"head"===b&&"profile"===a||"script"===b&&("src"===a||"for"===a)}function s(a,b){return/^(?:a|area|object|button)$/.test(b)&&"tabindex"===a||"input"===b&&("maxlength"===a||"tabindex"===a)||"select"===b&&("size"===a||"tabindex"===a)||"textarea"===b&&/^(?:rows|cols|tabindex)$/.test(a)||"colgroup"===b&&"span"===a||"col"===b&&"span"===a||("th"===b||"td"===b)&&("rowspan"===a||"colspan"===a)}function t(a,b,c){if("link"!==a)return!1;for(var d=0,e=b.length;d<e;d++)if("rel"===b[d].name&&b[d].value===c)return!0}function u(a,b,c){return"media"===c&&(t(a,b,"stylesheet")||p(a,b))}function v(a,b){return"srcset"===a&&ha(b)}function w(a,b,c,e,f){if(c&&i(b,e))return c=_(c).replace(/^javascript:\s*/i,""),e.minifyJS(c,!0);if("class"===b)return c=_(c),c=e.sortClassName?e.sortClassName(c):d(c);if(r(b,a))return c=_(c),t(a,f,"canonical")?c:e.minifyURLs(c);if(s(b,a))return _(c);if("style"===b)return c=_(c),c&&(/;$/.test(c)&&!/&#?[0-9a-zA-Z]+;$/.test(c)&&(c=c.replace(/\s*;$/,"")),c=z(e.minifyCSS(y(c)))),c;if(v(b,a))c=_(c).split(/\s+,\s*|\s*,\s+/).map(function(a){var b=a,c="",d=a.match(/\s+([1-9][0-9]*w|[0-9]+(?:\.[0-9]+)?x)$/);if(d){b=b.slice(0,-d[0].length);var f=+d[1].slice(0,-1),g=d[1].slice(-1);1===f&&"x"===g||(c=" "+f+g)}return e.minifyURLs(b)+c}).join(", ");else if(x(a,f)&&"content"===b)c=c.replace(/\s+/g,"").replace(/[0-9]+\.[0-9]+/g,function(a){return(+a).toString()});else if(c&&e.customAttrCollapse&&e.customAttrCollapse.test(b))c=c.replace(/\n+|\r+|\s{2,}/g,"");else if("script"===a&&"type"===b)c=_(c.replace(/\s*;\s*/g,";"));else if(u(a,f,b))return c=_(c),B(e.minifyCSS(A(c)));return c}function x(a,b){if("meta"!==a)return!1;for(var c=0,d=b.length;c<d;c++)if("name"===b[c].name&&"viewport"===b[c].value)return!0}function y(a){return"*{"+a+"}"}function z(a){var b=a.match(/^\*\{([\s\S]*)\}$/);return b?b[1]:a}function A(a){return"@media "+a+"{a{top:0}}"}function B(a){var b=a.match(/^@media ([\s\S]*?)\s*{[\s\S]*}$/);return b?b[1]:a}function C(a,b){return b.processConditionalComments?a.replace(/^(\[if\s[^\]]+]>)([\s\S]*?)(<!\[endif])$/,function(a,c,d,e){return c+S(d,b,!0)+e}):a}function D(a,b,c){for(var d=0,e=c.length;d<e;d++)if("type"===c[d].name.toLowerCase()&&b.processScripts.indexOf(c[d].value)>-1)return S(a,b);return a}function E(a,b){switch(a){case"html":case"head":return!0;case"body":return!ka(b);case"colgroup":return"col"===b;case"tbody":return"tr"===b}return!1}function F(a,b){switch(b){case"colgroup":return"colgroup"===a;case"tbody":return sa(a)}return!1}function G(a,b){switch(a){case"html":case"head":case"body":case"colgroup":case"caption":return!0;case"li":case"optgroup":case"tr":return b===a;case"dt":case"dd":return la(b);case"p":return ma(b);case"rb":case"rt":case"rp":return oa(b);case"rtc":return pa(b);case"option":return qa(b);case"thead":case"tbody":return ra(b);case"tfoot":return"tbody"===b;case"td":case"th":return ta(b)}return!1}function H(a,b,c,d){return!(c&&!/^\s*$/.test(c))&&("function"==typeof d.removeEmptyAttributes?d.removeEmptyAttributes(b,a):"input"===a&&"value"===b||za.test(b))}function I(a,b){for(var c=b.length-1;c>=0;c--)if(b[c].name===a)return!0;return!1}function J(a,b){switch(a){case"textarea":return!1;case"audio":case"script":case"video":if(I("src",b))return!1;break;case"iframe":if(I("src",b)||I("srcdoc",b))return!1;break;case"object":if(I("data",b))return!1;break;case"applet":if(I("code",b))return!1}return!0}function K(a){return!/^(?:script|style|pre|textarea)$/.test(a)}function L(a){return!/^(?:pre|textarea)$/.test(a)}function M(a,b,c,d){var e=d.caseSensitive?a.name:a.name.toLowerCase(),f=a.value;if(d.decodeEntities&&f&&(f=V(f,{isAttributeValue:!0})),!(d.removeRedundantAttributes&&l(c,e,f,b)||d.removeScriptTypeAttributes&&"script"===c&&"type"===e&&m(f)||d.removeStyleLinkTypeAttributes&&("style"===c||"link"===c)&&"type"===e&&o(f)||(f=w(c,e,f,d,b),d.removeEmptyAttributes&&H(c,e,f,d))))return d.decodeEntities&&f&&(f=f.replace(/&(#?[0-9a-zA-Z]+;)/g,"&amp;$1")),{attr:a,name:e,value:f}}function N(a,b,c,d,e){var f,g,h=a.name,i=a.value,k=a.attr,l=k.quote;if(void 0===i||c.removeAttributeQuotes&&!~i.indexOf(e)&&j(i))g=!d||b||/\/$/.test(i)?i+" ":i;else{if(!c.preventAttributesEscaping){if(void 0===c.quoteCharacter){l=(i.match(/'/g)||[]).length<(i.match(/"/g)||[]).length?"'":'"'}else l="'"===c.quoteCharacter?"'":'"';i='"'===l?i.replace(/"/g,"&#34;"):i.replace(/'/g,"&#39;")}g=l+i+l,d||c.removeTagWhitespace||(g+=" ")}return void 0===i||c.collapseBooleanAttributes&&q(h.toLowerCase(),i.toLowerCase())?(f=h,d||(f+=" ")):f=h+k.customAssign+g,k.customOpen+f+k.customClose}function O(a){return a}function P(a){["html5","includeAutoGeneratedTags"].forEach(function(b){b in a||(a[b]=!0)}),"function"!=typeof a.log&&(a.log=O);for(var b=["canCollapseWhitespace","canTrimWhitespace"],c=0,d=b.length;c<d;c++)a[b[c]]||(a[b[c]]=function(){return!1});if("ignoreCustomComments"in a||(a.ignoreCustomComments=[/^!/]),"ignoreCustomFragments"in a||(a.ignoreCustomFragments=[/<%[\s\S]*?%>/,/<\?[\s\S]*?\?>/]),a.minifyURLs||(a.minifyURLs=O),"function"!=typeof a.minifyURLs){var e=a.minifyURLs;"string"==typeof e?e={site:e}:"object"!=typeof e&&(e={}),a.minifyURLs=function(b){try{return X.relate(b,e)}catch(c){return a.log(c),b}}}if(a.minifyJS||(a.minifyJS=O),"function"!=typeof a.minifyJS){var f=a.minifyJS;"object"!=typeof f&&(f={}),f.fromString=!0,(f.output||(f.output={})).inline_script=!0,(f.parse||(f.parse={})).bare_returns=!1,a.minifyJS=function(b,c){var d=b.match(/^\s*<!--.*/),e=d?b.slice(d[0].length).replace(/\n\s*-->\s*$/,""):b;try{return f.parse.bare_returns=c,e=Z.minify(e,f).code,/;$/.test(e)&&(e=e.slice(0,-1)),e}catch(c){return a.log(c),b}}}if(a.minifyCSS||(a.minifyCSS=O),"function"!=typeof a.minifyCSS){var g=a.minifyCSS;"object"!=typeof g&&(g={}),a.minifyCSS=function(b){b=b.replace(/(url\s*\(\s*)("|'|)(.*?)\2(\s*\))/gi,function(b,c,d,e,f){return c+d+a.minifyURLs(e)+d+f});try{return new U(g).minify(b).styles}catch(c){return a.log(c),b}}}}function Q(a){var b;do{b=Math.random().toString(36).replace(/^0\.[0-9]*/,"")}while(~a.indexOf(b));return b}function R(a,b,c,d){function e(a){return a.map(function(a){return b.caseSensitive?a.name:a.name.toLowerCase()})}function f(a,b){return!b||a.indexOf(b)===-1}function g(a){return f(a,c)&&f(a,d)}function h(a){var c,d;new W(a,{start:function(a,f){i&&(i[a]||(i[a]=new Y),i[a].add(e(f).filter(g)));for(var h=0,k=f.length;h<k;h++){var l=f[h];j&&"class"===(b.caseSensitive?l.name:l.name.toLowerCase())?j.add(_(l.value).split(/\s+/).filter(g)):b.processScripts&&"type"===l.name.toLowerCase()&&(c=a,d=l.value)}},end:function(){c=""},chars:function(a){b.processScripts&&Aa(c)&&b.processScripts.indexOf(d)>-1&&h(a)}})}var i=b.sortAttributes&&Object.create(null),j=b.sortClassName&&new Y,k=b.log;if(b.log=null,b.sortAttributes=!1,b.sortClassName=!1,h(S(a,b)),b.log=k,i){var l=Object.create(null);for(var m in i)l[m]=i[m].createSorter();b.sortAttributes=function(a,b){var c=l[a];if(c){var d=Object.create(null),f=e(b);f.forEach(function(a,c){(d[a]||(d[a]=[])).push(b[c])}),c.sort(f).forEach(function(a,c){b[c]=d[a].shift()})}}}if(j){var n=j.createSorter();b.sortClassName=function(a){return n.sort(a.split(/\s+/)).join(" ")}}}function S(a,b,c){function i(a){return a.replace(w,function(a,b,c){var d=X[+c];return d[1]+v+c+d[2]})}function j(a,c){return K(a)||b.canCollapseWhitespace(a,c)}function k(a,c){return L(a)||b.canTrimWhitespace(a,c)}function l(){for(var a=x.length-1;a>0&&!/^<[^\/!]/.test(x[a]);)a--;x.length=Math.max(0,a)}function m(){for(var a=x.length-1;a>0&&!/^<\//.test(x[a]);)a--;x.length=Math.max(0,a)}function o(a,c){for(var d=null;a>=0&&k(d);a--){var e=x[a],g=e.match(/^<\/([\w:-]+)>$/);if(g)d=g[1];else if(/>$/.test(e)||(x[a]=f(e,null,c,b)))break}}function q(a){var b=x.length-1;if(x.length>1){var c=x[x.length-1];/^(?:<!|$)/.test(c)&&c.indexOf(u)===-1&&b--}o(b,a)}b=b||{};var r=[];P(b),b.collapseWhitespace&&(a=e(a,b,!0,!0));var s,t,u,v,w,x=[],y="",z="",A=[],B=[],H=[],I="",O="",S=Date.now(),U=[],X=[];a=a.replace(/<!-- htmlmin:ignore -->([\s\S]*?)<!-- htmlmin:ignore -->/g,function(c,d){if(!u){u=Q(a);var e=new RegExp("^"+u+"([0-9]+)$");b.ignoreCustomComments?b.ignoreCustomComments.push(e):b.ignoreCustomComments=[e]}var f="<!--"+u+U.length+"-->";return U.push(d),f});var Y=b.ignoreCustomFragments.map(function(a){return a.source});if(Y.length){var Z=new RegExp("\\s*(?:"+Y.join("|")+")+\\s*","g");a=a.replace(Z,function(c){if(!v){v=Q(a),w=new RegExp("(\\s*)"+v+"([0-9]+)(\\s*)","g");var d=b.minifyCSS;d&&(b.minifyCSS=function(a){return d(i(a))});var e=b.minifyJS;e&&(b.minifyJS=function(a,b){return e(i(a),b)})}var f=v+X.length;return X.push(/^(\s*)[\s\S]*?(\s*)$/.exec(c)),"\t"+f+"\t"})}(b.sortAttributes&&"function"!=typeof b.sortAttributes||b.sortClassName&&"function"!=typeof b.sortClassName)&&R(a,b,u,v),new W(a,{partialMarkup:c,html5:b.html5,start:function(a,c,d,e,f){var g=a.toLowerCase();if("svg"===g){r.push(b);var h={};for(var i in b)h[i]=b[i];h.keepClosingSlash=!0,h.caseSensitive=!0,b=h}a=b.caseSensitive?a:g,z=a,s=a,ca(a)||(y=""),t=!1,A=c;var n=b.removeOptionalTags;if(n){var o=ya(a);o&&E(I,a)&&l(),I="",o&&G(O,a)&&(m(),n=!F(O,a)),O=""}b.collapseWhitespace&&(B.length||q(a),k(a,c)||B.push(a),j(a,c)||H.push(a));var p="<"+a,u=e&&b.keepClosingSlash;x.push(p),b.sortAttributes&&b.sortAttributes(a,c);for(var w=[],C=c.length,D=!0;--C>=0;){var J=M(c[C],c,a,b);J&&(w.unshift(N(J,u,b,D,v)),D=!1)}w.length>0?(x.push(" "),x.push.apply(x,w)):n&&ia(a)&&(I=a),x.push(x.pop()+(u?"/":"")+">"),f&&!b.includeAutoGeneratedTags&&(l(),I="")},end:function(a,c,d){var e=a.toLowerCase();"svg"===e&&(b=r.pop()),a=b.caseSensitive?a:e,b.collapseWhitespace&&(B.length?a===B[B.length-1]&&B.pop():q("/"+a),H.length&&a===H[H.length-1]&&H.pop());var f=!1;a===z&&(z="",f=!t),b.removeOptionalTags&&(f&&ua(I)&&l(),I="",!ya(a)||!O||xa(O)||"p"===O&&na(a)||m(),O=ja(a)?a:""),b.removeEmptyElements&&f&&J(a,c)?(l(),I="",O=""):(d&&!b.includeAutoGeneratedTags?O="":x.push("</"+a+">"),s="/"+a,ba(a)?f&&(y+="|"):y="")},chars:function(a,c,d){if(c=""===c?"comment":c,d=""===d?"comment":d,b.decodeEntities&&a&&!Aa(z)&&(a=V(a)),b.collapseWhitespace){if(!B.length){if("comment"===c){var g=x[x.length-1];if(g.indexOf(u)===-1&&(g||(c=s),x.length>1&&(!g||!b.conservativeCollapse&&/ $/.test(y)))){var h=x.length-2;x[h]=x[h].replace(/\s+$/,function(b){return a=b+a,""})}}if(c)if("/nobr"===c||"wbr"===c){if(/^\s/.test(a)){for(var i=x.length-1;i>0&&0!==x[i].lastIndexOf("<"+c);)i--;o(i-1,"br")}}else ca("/"===c.charAt(0)?c.slice(1):c)&&(a=e(a,b,/(?:^|\s)$/.test(y)));a=c||d?f(a,c,d,b):e(a,b,!0,!0),!a&&/\s$/.test(y)&&c&&"/"===c.charAt(0)&&o(x.length-1,d)}H.length||"html"===d||c&&d||(a=e(a,b,!1,!1,!0))}b.processScripts&&Aa(z)&&(a=D(a,b,A)),n(z,A)&&(a=b.minifyJS(a)),p(z,A)&&(a=b.minifyCSS(a)),b.removeOptionalTags&&a&&(("html"===I||"body"===I&&!/^\s/.test(a))&&l(),I="",(va(O)||wa(O)&&!/^\s/.test(a))&&m(),O=""),s=/^\s*$/.test(a)?c:"comment",b.decodeEntities&&a&&!Aa(z)&&(a=a.replace(/&(#?[0-9a-zA-Z]+;)/g,"&amp$1").replace(/</g,"&lt;")),y+=a,a&&(t=!0),x.push(a)},comment:function(a,c){var d=c?"<!":"<!--",e=c?">":"-->";a=g(a)?d+C(a,b)+e:b.removeComments?h(a,b)?"<!--"+a+"-->":"":d+a+e,b.removeOptionalTags&&a&&(I="",O=""),x.push(a)},doctype:function(a){x.push(b.useShortDoctype?"<!DOCTYPE html>":d(a))},customAttrAssign:b.customAttrAssign,customAttrSurround:b.customAttrSurround}),b.removeOptionalTags&&(ua(I)&&l(),O&&!xa(O)&&m()),b.collapseWhitespace&&q("br");var $=T(x,b);return w&&($=$.replace(w,function(a,c,d,f){var g=X[+d][0];return b.collapseWhitespace?("\t"!==c&&(g=c+g),"\t"!==f&&(g+=f),e(g,{preserveLineBreaks:b.preserveLineBreaks,conservativeCollapse:!b.trimCustomFragments},/^\s/.test(g),/\s$/.test(g))):g})),u&&($=$.replace(new RegExp("<!--"+u+"([0-9]+)-->","g"),function(a,b){return U[+b]})),b.log("minified in: "+(Date.now()-S)+"ms"),$}function T(a,b){var c,d=b.maxLineLength;if(d){for(var f,g=[],h="",i=0,j=a.length;i<j;i++)f=a[i],h.length+f.length<d?h+=f:(g.push(h.replace(/^\n/,"")),h=f);g.push(h),c=g.join("\n")}else c=a.join("");return b.collapseWhitespace?e(c,b,!0,!0):c}var U=a("clean-css"),V=a("he").decode,W=a("./htmlparser").HTMLParser,X=a("relateurl"),Y=a("./tokenchain"),Z=a("uglify-js"),$=a("./utils"),_=String.prototype.trim?function(a){return"string"!=typeof a?a:a.trim()}:function(a){return"string"!=typeof a?a:a.replace(/^\s+/,"").replace(/\s+$/,"")
+},aa=$.createMapFromString,ba=aa("a,abbr,acronym,b,bdi,bdo,big,button,cite,code,del,dfn,em,font,i,ins,kbd,mark,math,nobr,q,rt,rp,s,samp,small,span,strike,strong,sub,sup,svg,time,tt,u,var"),ca=aa("a,abbr,acronym,b,big,del,em,font,i,ins,kbd,mark,nobr,s,samp,small,span,strike,strong,sub,sup,time,tt,u,var"),da=aa("comment,img,input,wbr"),ea=$.createMap(["text/javascript","text/ecmascript","text/jscript","application/javascript","application/x-javascript","application/ecmascript"]),fa=aa("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,truespeed,typemustmatch,visible"),ga=aa("true,false"),ha=aa("img,source"),ia=aa("html,head,body,colgroup,tbody"),ja=aa("html,head,body,li,dt,dd,p,rb,rt,rtc,rp,optgroup,option,colgroup,caption,thead,tbody,tfoot,tr,td,th"),ka=aa("meta,link,script,style,template,noscript"),la=aa("dt,dd"),ma=aa("address,article,aside,blockquote,details,div,dl,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,hr,main,menu,nav,ol,p,pre,section,table,ul"),na=aa("a,audio,del,ins,map,noscript,video"),oa=aa("rb,rt,rtc,rp"),pa=aa("rb,rtc,rp"),qa=aa("option,optgroup"),ra=aa("tbody,tfoot"),sa=aa("thead,tbody,tfoot"),ta=aa("td,th"),ua=aa("html,head,body"),va=aa("html,body"),wa=aa("head,colgroup,caption"),xa=aa("dt,thead"),ya=aa("a,abbr,acronym,address,applet,area,article,aside,audio,b,base,basefont,bdi,bdo,bgsound,big,blink,blockquote,body,br,button,canvas,caption,center,cite,code,col,colgroup,command,content,data,datalist,dd,del,details,dfn,dialog,dir,div,dl,dt,element,em,embed,fieldset,figcaption,figure,font,footer,form,frame,frameset,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,i,iframe,image,img,input,ins,isindex,kbd,keygen,label,legend,li,link,listing,main,map,mark,marquee,menu,menuitem,meta,meter,multicol,nav,nobr,noembed,noframes,noscript,object,ol,optgroup,option,output,p,param,picture,plaintext,pre,progress,q,rp,rt,rtc,ruby,s,samp,script,section,select,shadow,small,source,spacer,span,strike,strong,style,sub,summary,sup,table,tbody,td,template,textarea,tfoot,th,thead,time,title,tr,track,tt,u,ul,var,video,wbr,xmp"),za=new RegExp("^(?:class|id|style|title|lang|dir|on(?:focus|blur|change|click|dblclick|mouse(?:down|up|over|move|out)|key(?:press|down|up)))$"),Aa=aa("script,style");c.minify=function(a,b){return S(a,b)}},{"./htmlparser":166,"./tokenchain":167,"./utils":168,"clean-css":7,he:101,relateurl:125,"uglify-js":157}]},{},["html-minifier"]);
\ No newline at end of file
index f9a98fd..99220f8 100644 (file)
@@ -9,7 +9,7 @@
   <body>
     <div id="outer-wrapper">
       <div id="wrapper">
-        <h1>HTML Minifier <span>(v3.4.0)</span></h1>
+        <h1>HTML Minifier <span>(v3.4.1)</span></h1>
         <textarea rows="8" cols="40" id="input"></textarea>
         <div class="minify-button">
           <button type="button" id="minify-btn">Minify</button>
index 8fdb081..c56bbd1 100644 (file)
@@ -1,7 +1,7 @@
 {
   "name": "html-minifier",
   "description": "Highly configurable, well-tested, JavaScript-based HTML minifier.",
-  "version": "3.4.0",
+  "version": "3.4.1",
   "keywords": [
     "cli",
     "compress",
index f577aed..bdf1c53 100644 (file)
@@ -3,12 +3,12 @@
   <head>
     <meta charset="utf-8">
     <title>HTML Minifier Tests</title>
-    <link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.1.1.css">
+    <link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.2.0.css">
   </head>
   <body>
     <div id="qunit"></div>
     <div id="qunit-fixture"></div>
-    <script src="https://code.jquery.com/qunit/qunit-2.1.1.js"></script>
+    <script src="https://code.jquery.com/qunit/qunit-2.2.0.js"></script>
     <script src="../dist/htmlminifier.js"></script>
     <script src="minifier.js"></script>
   </body>